You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-user@ant.apache.org by Erik Weibust <ew...@yahoo.com> on 2009/05/28 04:25:39 UTC

Looking for jboss-javaee.jar

I am new to Ivy and am trying to move my current project to Ant+Ivy.  The only jar I'm having problems with is jboss-javaee.jar for JBossAS 5.0.1.GA.  Can somebody please help?  Should I be posting this message to a JBoss forum?

Thanks...
Erik Weibust


      

Re: Looking for jboss-javaee.jar

Posted by Archie Cobbs <ar...@dellroad.org>.
Calm down please, this is not a place for political bickering. Thanks
for your understanding.

-Archie

On Friday, May 29, 2009, Jeff Glatz <jd...@containerstore.com> wrote:
>>
>> Mark Thomas
>> spatialguru.net@gmail.com
>> 205.529.9013
>>
>> "Commit to the Lord whatever you do,
>>    and your plans will succeed." - Proverbs 16:3
>>
>
> ouch, this the same shit that Rumsfeld was documented spouting to the US mercenaries in iraq before their killing sprees...
>
> ########################################################################
> "This email message, including any attachments, is for the sole use of the intended recipients and may contain confidential and privileged information.  Unauthorized use, disclosure or distribution of this email is strictly forbidden.  If you have received this message in error, please reply to the above sender notifying them of this error, and then kindly delete the message."
> ########################################################################
>

-- 
Archie L. Cobbs

RE: [ivyroundup] Re: Looking for jboss-javaee.jar

Posted by Jeff Glatz <jd...@containerstore.com>.
> 
> Mark Thomas
> spatialguru.net@gmail.com
> 205.529.9013
> 
> "Commit to the Lord whatever you do,
>    and your plans will succeed." - Proverbs 16:3
> 

ouch, this the same shit that Rumsfeld was documented spouting to the US mercenaries in iraq before their killing sprees...

########################################################################
"This email message, including any attachments, is for the sole use of the intended recipients and may contain confidential and privileged information.  Unauthorized use, disclosure or distribution of this email is strictly forbidden.  If you have received this message in error, please reply to the above sender notifying them of this error, and then kindly delete the message."
########################################################################

Re: [ivyroundup] Re: Looking for jboss-javaee.jar

Posted by Mark Thomas <sp...@gmail.com>.
use the jboss maven repo.  can also build ivy roundup configs w/
dependencies by looking at the POM files.  here's link to jboss-javaee.jar
for 5.0.1.GA

http://repository.jboss.com/maven2/org/jboss/javaee/jboss-javaee/5.0.1.GA/

Regards,

Mark Thomas
spatialguru.net@gmail.com
205.529.9013

"Commit to the Lord whatever you do,
   and your plans will succeed." - Proverbs 16:3


On Thu, May 28, 2009 at 10:21 AM, Joshua Tharp <
joshua-tharp@alumni.calpoly.edu> wrote:

> (cross-posted to ivyroundup)
>
> You're welcome to what I've got. It's not complete yet (so far it is
> focused on JMS), and like I said before, I haven't been successful in
> identifying all of the dependent module versions. Also, I was having
> difficulties getting the transitive dependencies to work properly...
>
> packager.xml - Caution, this is for JDK6 and the download is large...
> =================
> <?xml version="1.0" encoding="UTF-8"?>
> <!--
>     Copyright 2009 Joshua Tharp
>
>     Licensed under the Apache License, Version 2.0 (the "License"); you may
>     not use this file except in compliance with the License. You may obtain
>     a copy of the License at
>
>         http://www.apache.org/licenses/LICENSE-2.0
>
>     Unless required by applicable law or agreed to in writing, software
>     distributed under the License is distributed on an "AS IS" BASIS,
> WITHOUT
>     WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
> the
>     License for the specific language governing permissions and limitations
>     under the License.
> -->
> <packager-module rev="$Id: $">
>   <property name="name" value="jboss" />
>   <property name="revision" value="${ivy.packager.revision}"/>
>   <property name="archive" value="${name}-${revision}"/>
>
>   <resource
>       url="http://downloads.sourceforge.net/jboss/${archive}-jdk6.zip<http://downloads.sourceforge.net/jboss/$%7Barchive%7D-jdk6.zip>
> "
>       sha1="fb4ed4d7cb80a1cec5671f9e4611e5e94ae34f33">
>     <include name="${archive}/client/*.jar" />
>   </resource>
>
>   <build>
>     <move todir="artifacts/jars">
>       <fileset
>           dir="archive/${archive}/client"
>           includes="*.jar" />
>     </move>
>   </build>
> </packager-module>
>
>
> ivy.xml
> ==================
> <?xml version="1.0" encoding="UTF-8"?>
> <!--
>     Copyright 2009 Joshua Tharp
>
>     Licensed under the Apache License, Version 2.0 (the "License"); you may
>     not use this file except in compliance with the License. You may obtain
>     a copy of the License at
>
>         http://www.apache.org/licenses/LICENSE-2.0
>
>     Unless required by applicable law or agreed to in writing, software
>     distributed under the License is distributed on an "AS IS" BASIS,
> WITHOUT
>     WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
> the
>     License for the specific language governing permissions and limitations
>     under the License.
> -->
> <ivy-module rev="$Id: $">
>   <info publication="20090224043700">
>       <description>The JBoss client jar files.</description>
>   </info>
>
>   <configurations>
>     <conf name="core" />
>     <conf
>         name="naming"
>         extends="core" />
>     <conf
>         name="jms"
>         extends="naming" />
>     <conf
>         name="default"
>         extends="jms" />
>   </configurations>
>
>   <publications>
>     <!-- Core artifacts -->
>     <artifact
>         name="jboss-logging-spi"
>         conf="core"/>
>
>     <!-- Naming artifacts -->
>     <artifact
>         name="jnp-client"
>         conf="naming"/>
>
>     <!-- JMS artifacts -->
>     <artifact
>         name="jboss-aop-client"
>         conf="jms"/>
>     <artifact
>         name="jboss-common-core"
>         conf="jms"/>
>     <artifact
>         name="jboss-iiop-client"
>         conf="jms"/>
>     <artifact
>         name="jboss-mdr"
>         conf="jms"/>
>     <artifact
>         name="jboss-messaging-client"
>         conf="jms"/>
>     <artifact
>         name="jboss-remoting"
>         conf="jms"/>
>     <artifact
>         name="jboss-serialization"
>         conf="jms"/>
>   </publications>
>
>   <dependencies>
>     <dependency
>         name="javassist"
>         org="org.jboss"
>         rev="3.9.0"
>         conf="jms->default" />
>     <dependency
>         name="trove"
>         org="net.sourceforge.trove4j"
>         rev="1.0.2"
>         conf="jms->default" />
>     <dependency
>         name="concurrent"
>         org="edu.oswego.cs.gee"
>         rev="1.3.4"
>         conf="jms->default" />
>     <dependency
>         name="log4j"
>         org="org.apache.log4j"
>         rev="1.2.15"
>         conf="jms->default" />
>   </dependencies>
> </ivy-module>
>
> Josh
>
> On Thu, May 28, 2009 at 8:01 AM, Archie Cobbs <ar...@gmail.com>wrote:
>
>> Slightly off-topic but... this sounds like a good opportunity to
>> consolidate
>> effort: if someone wanted to contribute their working jboss ivy files to
>> Ivy
>> RoundUp <http://code.google.com/p/ivyroundup/> then all can benefit from
>> them (right now Ivy RoundUp doesn't have any jboss modules yet).
>>
>> -Archie
>>
>> On Thu, May 28, 2009 at 9:27 AM, Joshua Tharp <
>> joshua-tharp@alumni.calpoly.edu> wrote:
>>
>> > I maintain a repository inside my company firewall. I deployed several
>> of
>> > the client jars from JBoss to it myself. I found tracking down the
>> version
>> > numbers of several of the dependent libraries they deploy difficult, and
>> > therefore (obviously) specifying them in my ivy files also difficult.
>> >
>> > Josh
>> >
>> > On Wed, May 27, 2009 at 7:25 PM, Erik Weibust <ew...@yahoo.com>
>> wrote:
>> >
>> > >
>> > > I am new to Ivy and am trying to move my current project to Ant+Ivy.
>>  The
>> > > only jar I'm having problems with is jboss-javaee.jar for JBossAS
>> > 5.0.1.GA.
>> > >  Can somebody please help?  Should I be posting this message to a
>> JBoss
>> > > forum?
>> > >
>> > > Thanks...
>> > > Erik Weibust
>> > >
>> > >
>> > >
>> > >
>> >
>>
>>
>>
>> --
>> Archie L. Cobbs
>>
>
>
> --~--~---------~--~----~------------~-------~--~----~
> You received this message because you are subscribed to the Google Groups
> "ivyroundup" group.
> To post to this group, send email to ivyroundup@googlegroups.com
> To unsubscribe from this group, send email to
> ivyroundup+unsubscribe@googlegroups.com<iv...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/ivyroundup?hl=en
> -~----------~----~----~----~------~----~------~--~---
>
>

Re: Looking for jboss-javaee.jar

Posted by Joshua Tharp <jo...@alumni.calpoly.edu>.
(cross-posted to ivyroundup)

You're welcome to what I've got. It's not complete yet (so far it is focused
on JMS), and like I said before, I haven't been successful in identifying
all of the dependent module versions. Also, I was having difficulties
getting the transitive dependencies to work properly...

packager.xml - Caution, this is for JDK6 and the download is large...
=================
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright 2009 Joshua Tharp

    Licensed under the Apache License, Version 2.0 (the "License"); you may
    not use this file except in compliance with the License. You may obtain
    a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT
    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    License for the specific language governing permissions and limitations
    under the License.
-->
<packager-module rev="$Id: $">
  <property name="name" value="jboss" />
  <property name="revision" value="${ivy.packager.revision}"/>
  <property name="archive" value="${name}-${revision}"/>

  <resource
      url="http://downloads.sourceforge.net/jboss/${archive}-jdk6.zip"
      sha1="fb4ed4d7cb80a1cec5671f9e4611e5e94ae34f33">
    <include name="${archive}/client/*.jar" />
  </resource>

  <build>
    <move todir="artifacts/jars">
      <fileset
          dir="archive/${archive}/client"
          includes="*.jar" />
    </move>
  </build>
</packager-module>


ivy.xml
==================
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright 2009 Joshua Tharp

    Licensed under the Apache License, Version 2.0 (the "License"); you may
    not use this file except in compliance with the License. You may obtain
    a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT
    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    License for the specific language governing permissions and limitations
    under the License.
-->
<ivy-module rev="$Id: $">
  <info publication="20090224043700">
      <description>The JBoss client jar files.</description>
  </info>

  <configurations>
    <conf name="core" />
    <conf
        name="naming"
        extends="core" />
    <conf
        name="jms"
        extends="naming" />
    <conf
        name="default"
        extends="jms" />
  </configurations>

  <publications>
    <!-- Core artifacts -->
    <artifact
        name="jboss-logging-spi"
        conf="core"/>

    <!-- Naming artifacts -->
    <artifact
        name="jnp-client"
        conf="naming"/>

    <!-- JMS artifacts -->
    <artifact
        name="jboss-aop-client"
        conf="jms"/>
    <artifact
        name="jboss-common-core"
        conf="jms"/>
    <artifact
        name="jboss-iiop-client"
        conf="jms"/>
    <artifact
        name="jboss-mdr"
        conf="jms"/>
    <artifact
        name="jboss-messaging-client"
        conf="jms"/>
    <artifact
        name="jboss-remoting"
        conf="jms"/>
    <artifact
        name="jboss-serialization"
        conf="jms"/>
  </publications>

  <dependencies>
    <dependency
        name="javassist"
        org="org.jboss"
        rev="3.9.0"
        conf="jms->default" />
    <dependency
        name="trove"
        org="net.sourceforge.trove4j"
        rev="1.0.2"
        conf="jms->default" />
    <dependency
        name="concurrent"
        org="edu.oswego.cs.gee"
        rev="1.3.4"
        conf="jms->default" />
    <dependency
        name="log4j"
        org="org.apache.log4j"
        rev="1.2.15"
        conf="jms->default" />
  </dependencies>
</ivy-module>

Josh

On Thu, May 28, 2009 at 8:01 AM, Archie Cobbs <ar...@gmail.com>wrote:

> Slightly off-topic but... this sounds like a good opportunity to
> consolidate
> effort: if someone wanted to contribute their working jboss ivy files to
> Ivy
> RoundUp <http://code.google.com/p/ivyroundup/> then all can benefit from
> them (right now Ivy RoundUp doesn't have any jboss modules yet).
>
> -Archie
>
> On Thu, May 28, 2009 at 9:27 AM, Joshua Tharp <
> joshua-tharp@alumni.calpoly.edu> wrote:
>
> > I maintain a repository inside my company firewall. I deployed several of
> > the client jars from JBoss to it myself. I found tracking down the
> version
> > numbers of several of the dependent libraries they deploy difficult, and
> > therefore (obviously) specifying them in my ivy files also difficult.
> >
> > Josh
> >
> > On Wed, May 27, 2009 at 7:25 PM, Erik Weibust <ew...@yahoo.com>
> wrote:
> >
> > >
> > > I am new to Ivy and am trying to move my current project to Ant+Ivy.
>  The
> > > only jar I'm having problems with is jboss-javaee.jar for JBossAS
> > 5.0.1.GA.
> > >  Can somebody please help?  Should I be posting this message to a JBoss
> > > forum?
> > >
> > > Thanks...
> > > Erik Weibust
> > >
> > >
> > >
> > >
> >
>
>
>
> --
> Archie L. Cobbs
>

Re: Looking for jboss-javaee.jar

Posted by Archie Cobbs <ar...@gmail.com>.
Slightly off-topic but... this sounds like a good opportunity to consolidate
effort: if someone wanted to contribute their working jboss ivy files to Ivy
RoundUp <http://code.google.com/p/ivyroundup/> then all can benefit from
them (right now Ivy RoundUp doesn't have any jboss modules yet).

-Archie

On Thu, May 28, 2009 at 9:27 AM, Joshua Tharp <
joshua-tharp@alumni.calpoly.edu> wrote:

> I maintain a repository inside my company firewall. I deployed several of
> the client jars from JBoss to it myself. I found tracking down the version
> numbers of several of the dependent libraries they deploy difficult, and
> therefore (obviously) specifying them in my ivy files also difficult.
>
> Josh
>
> On Wed, May 27, 2009 at 7:25 PM, Erik Weibust <ew...@yahoo.com> wrote:
>
> >
> > I am new to Ivy and am trying to move my current project to Ant+Ivy.  The
> > only jar I'm having problems with is jboss-javaee.jar for JBossAS
> 5.0.1.GA.
> >  Can somebody please help?  Should I be posting this message to a JBoss
> > forum?
> >
> > Thanks...
> > Erik Weibust
> >
> >
> >
> >
>



-- 
Archie L. Cobbs

Re: Looking for jboss-javaee.jar

Posted by Joshua Tharp <jo...@alumni.calpoly.edu>.
I maintain a repository inside my company firewall. I deployed several of
the client jars from JBoss to it myself. I found tracking down the version
numbers of several of the dependent libraries they deploy difficult, and
therefore (obviously) specifying them in my ivy files also difficult.

Josh

On Wed, May 27, 2009 at 7:25 PM, Erik Weibust <ew...@yahoo.com> wrote:

>
> I am new to Ivy and am trying to move my current project to Ant+Ivy.  The
> only jar I'm having problems with is jboss-javaee.jar for JBossAS 5.0.1.GA.
>  Can somebody please help?  Should I be posting this message to a JBoss
> forum?
>
> Thanks...
> Erik Weibust
>
>
>
>

Re: Looking for jboss-javaee.jar

Posted by Geoff Clitheroe <g....@gmail.com>.
Hi,

Is Jboss's own repo any use or did you already try this one?

http://repository.jboss.com/maven2/org/jboss/javaee/jboss-javaee/5.0.1.GA/

Cheers,
Geoff


On Thu, May 28, 2009 at 2:25 PM, Erik Weibust <ew...@yahoo.com> wrote:
>
> I am new to Ivy and am trying to move my current project to Ant+Ivy.  The only jar I'm having problems with is jboss-javaee.jar for JBossAS 5.0.1.GA.  Can somebody please help?  Should I be posting this message to a JBoss forum?
>
> Thanks...
> Erik Weibust
>
>
>
>