The reason it can't find them is the ${pom.currentVersion} that you're
referencing doesn't exist.  You'll need to change each <version> element to
have the version of andromda (ie. 3.0M3-SNAPSHOT, etc).  Before the
pom.currentVersion was coming from the parent project.xml which exists in
the cartridges directory, but since you removed the <extend> element it
isn't inheriting the parent project information.

Chad

----- Original Message ----- 
From: "Bak Attila (SDA)" <[EMAIL PROTECTED]>
To: "Chad Brandon" <[EMAIL PROTECTED]>
Sent: Thursday, August 19, 2004 8:14 AM
Subject: RE: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs


Attempting to download maven-andromda-plugin-.jar.
WARNING: Failed to download maven-andromda-plugin-.jar.
Attempting to download andromda-core-.jar.
WARNING: Failed to download andromda-core-.jar.
Attempting to download andromda-metafacades-uml-.jar.
WARNING: Failed to download andromda-metafacades-uml-.jar.
Attempting to download andromda-metafacades-uml14-.jar.
WARNING: Failed to download andromda-metafacades-uml14-.jar.
Attempting to download andromda-meta-cartridge-.jar.
WARNING: Failed to download andromda-meta-cartridge-.jar.
Attempting to download andromda-validation-library-.jar.
WARNING: Failed to download andromda-validation-library-.jar.
Total time: 9 seconds
Finished at: Thu Aug 19 14:09:59 CEST 2004



maven-andromda-plugin-.jar (no download url specified)
andromda-core-.jar (no download url specified)
andromda-metafacades-uml-.jar (no download url specified)
andromda-metafacades-uml14-.jar (no download url specified)
andromda-meta-cartridge-.jar (no download url specified)
andromda-validation-library-.jar (no download url specified)


Can this be a classpath problem? Also I do not really understand the
<extend> clause in the project xml. (Since I do not want to extend anything)

-----Eredeti �zenet-----
Felad�: Chad Brandon [mailto:[EMAIL PROTECTED]
K�ldve: 2004. augusztus 19. 14:10
C�mzett: Bak Attila (SDA)
M�solatot kap: [EMAIL PROTECTED]
T�rgy: Re: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs

Can you tell me what errors your getting...send the output?

----- Original Message ----- 
From: "Bak Attila (SDA)" <[EMAIL PROTECTED]>
To: "Chad Brandon" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, August 19, 2004 8:06 AM
Subject: RE: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs


Hi,

This is my project.xml

<project>
  <id>andromda-baki-cartridge</id>
  <name>Baki Cartridge</name>
  <shortDescription>Baki Cartridge</shortDescription>
  <description>
Produces Hibernate entities wrapped with Session EJB facades.
More to be written by Matthias!
  </description>
  <developers>
    <developer>
      <name>Matthias Bohlen</name>
      <id>mattes3</id>
      <email>[EMAIL PROTECTED]</email>
            <roles>
                <role>Developer</role>
            </roles>
    </developer>
    <developer>
      <name>Chad Brandon</name>
      <id>cwbrandon</id>
      <email>[EMAIL PROTECTED]</email>
            <roles>
                <role>Developer</role>
            </roles>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>andromda</groupId>
      <artifactId>maven-andromda-plugin</artifactId>
      <version>${pom.currentVersion}</version>
      <type>plugin</type>
      <properties>
      <logical.languageMappingsUri>Java</logical.languageMappingsUri>
      <facades>${basedir}/target/src</facades>
      <facade-logics>${basedir}/target/src</facade-logics>
      <facades-to-impls>${basedir}/target/src</facades-to-impls>
      <facade-logic-impls>${basedir}/src/java</facade-logic-impls>
      </properties>
    </dependency>
    <dependency>
      <groupId>andromda</groupId>
      <artifactId>andromda-core</artifactId>
      <version>${pom.currentVersion}</version>
    </dependency>
    <dependency>
      <groupId>andromda</groupId>
      <artifactId>andromda-metafacades-uml</artifactId>
      <version>${pom.currentVersion}</version>
    </dependency>
    <dependency>
      <groupId>andromda</groupId>
      <artifactId>andromda-metafacades-uml14</artifactId>
      <version>${pom.currentVersion}</version>
    </dependency>
    <dependency>
      <groupId>andromda</groupId>
      <artifactId>andromda-meta-cartridge</artifactId>
      <version>${pom.currentVersion}</version>
    </dependency>
        <dependency>
            <groupId>andromda</groupId>
            <artifactId>andromda-validation-library</artifactId>
            <version>${pom.currentVersion}</version>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.8</version>
            <properties/>
        </dependency>
</dependencies>
</project>

When I try to run it tries to download the dependencies, but fails...?
Can you help?


Regards,

I try to "build" my own facades....

-----Eredeti �zenet-----
Felad�: Chad Brandon [mailto:[EMAIL PROTECTED]
K�ldve: 2004. augusztus 19. 13:03
C�mzett: Bak Attila (SDA)
M�solatot kap: [EMAIL PROTECTED]
T�rgy: Re: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs

You just need to place the meta cartridge on your classpath, if you have
setup a maven project for it, you'll add the andromda-meta-cartridge*.jar as
a dependency.  Take a look at one of the existing andromda cartridge
project.xml files for an example.

----- Original Message ----- 
From: "Bak Attila (SDA)" <[EMAIL PROTECTED]>
To: "Chad Brandon" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, August 19, 2004 3:36 AM
Subject: RE: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs


Hi,

I have created my own metafacade model in the given structure.
Placed this all in a separate dir in the samples directory of the
distribution.
How do I run the meta cartridge thru this?

Many thanks,
attila

-----Eredeti �zenet-----
Felad�: Chad Brandon [mailto:[EMAIL PROTECTED]
K�ldve: 2004. augusztus 17. 15:22
C�mzett: Bak Attila (SDA)
M�solatot kap: [EMAIL PROTECTED]
T�rgy: RE: [Andromda-user] RE: Andromda-user digest, Vol 1 #551 - 2 msgs

Yes we would be interested, that would definitely be
cool! :)

--- "Bak Attila (SDA)" <[EMAIL PROTECTED]> wrote:

> Hi,
>
> We are currently using Stp(ameos) from aonix
> (www.aonix.com) and generate over 2.000.000 lines of
> code for .NET.
> I am planning to port all this code to *.vm
> templates and then will release the .NET *.vm
> templates to you :-) if I manage this task :-)
>
> We are currently generating whole O-R mapper layer
> and other stuff as well!
>
> Are u interested in this?
> Regards,
> attila
>
>
> -----Eredeti �zenet-----
> Felad�: Chad Brandon [mailto:[EMAIL PROTECTED]
> K�ldve: 2004. augusztus 17. 15:13
> C�mzett: Bak Attila (SDA)
> M�solatot kap: [EMAIL PROTECTED]
> T�rgy: RE: [Andromda-user] RE: Andromda-user digest,
> Vol 1 #551 - 2 msgs
>
> http://maven.apache.org and from that site:
> http://maven.apache.org/misc/articles.html
>
> --- "Bak Attila (SDA)" <[EMAIL PROTECTED]> wrote:
>
> > Is there somewhere a good tutorial on Maven:-)
> >
> >
> > -----Eredeti �zenet-----
> > Felad�: Chad Brandon [mailto:[EMAIL PROTECTED]
>
> > K�ldve: 2004. augusztus 17. 15:01
> > C�mzett: [EMAIL PROTECTED]; Bak Attila (SDA);
> > [EMAIL PROTECTED]
> > T�rgy: RE: [Andromda-user] RE: Andromda-user
> digest,
> > Vol 1 #551 - 2 msgs
> >
> > You forgot "webservices" for animal quiz :)
> >
> > --- Wouter Zoons <[EMAIL PROTECTED]> wrote:
> >
> > > Animal quiz (struts + hibernate + session-ejbs)
> > > Online store (struts only)
> > >
> > > > -----Original Message-----
> > > > From:
> [EMAIL PROTECTED]
> > > [mailto:andromda-user-
> > > > [EMAIL PROTECTED] On Behalf Of Bak
> > > Attila (SDA)
> > > > Sent: Tuesday, August 17, 2004 2:34 PM
> > > > To: [EMAIL PROTECTED]
> > > > Subject: [Andromda-user] RE: Andromda-user
> > digest,
> > > Vol 1 #551 - 2 msgs
> > > >
> > > > Hi,
> > > >
> > > > Is there a "good" sample application in the
> 3.0
> > > version?
> > > > Something I can quickly learn from :-)
> > > >
> > > > Many thanks
> > > > attila
> > > >
> > >
> > >
> > >
> > >
> >
>
-------------------------------------------------------
> > > SF.Net email is sponsored by
> Shop4tech.com-Lowest
> > > price on Blank Media
> > > 100pk Sonic DVD-R 4x for only $29 -100pk Sonic
> > DVD+R
> > > for only $33
> > > Save 50% off Retail on Ink & Toner - Free
> Shipping
> > > and Free Gift.
> > >
> >
>
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
> > > _______________________________________________
> > > Andromda-user mailing list
> > > [EMAIL PROTECTED]
> > >
> >
>
https://lists.sourceforge.net/lists/listinfo/andromda-user
> > >
> >
> >
>
>







-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Andromda-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to