From npanday-users-return-25-apmail-incubator-npanday-users-archive=incubator.apache.org@incubator.apache.org Wed Dec 15 14:15:12 2010 Return-Path: Delivered-To: apmail-incubator-npanday-users-archive@minotaur.apache.org Received: (qmail 89410 invoked from network); 15 Dec 2010 14:15:12 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 15 Dec 2010 14:15:12 -0000 Received: (qmail 94759 invoked by uid 500); 15 Dec 2010 14:15:12 -0000 Delivered-To: apmail-incubator-npanday-users-archive@incubator.apache.org Received: (qmail 94723 invoked by uid 500); 15 Dec 2010 14:15:11 -0000 Mailing-List: contact npanday-users-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: npanday-users@incubator.apache.org Delivered-To: mailing list npanday-users@incubator.apache.org Received: (qmail 94710 invoked by uid 99); 15 Dec 2010 14:15:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Dec 2010 14:15:10 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RFC_ABUSE_POST,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of rodwash@hotmail.com designates 65.54.190.12 as permitted sender) Received: from [65.54.190.12] (HELO bay0-omc1-s1.bay0.hotmail.com) (65.54.190.12) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Dec 2010 14:15:01 +0000 Received: from BAY145-W35 ([65.54.190.61]) by bay0-omc1-s1.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Wed, 15 Dec 2010 06:14:39 -0800 Message-ID: Content-Type: multipart/alternative; boundary="_18373c71-e660-42cf-93de-ff48a97e7b07_" X-Originating-IP: [192.55.54.38] From: RODRIGO LIBERAL To: Subject: RE: NPanday dependency execution time doesn't work! Date: Wed, 15 Dec 2010 14:14:39 +0000 Importance: Normal In-Reply-To: References: <659129692.915.1292214689821.JavaMail.root@cell.g2ix.net>,<1387629453.923.1292214762824.JavaMail.root@cell.g2ix.net>, MIME-Version: 1.0 X-OriginalArrivalTime: 15 Dec 2010 14:14:39.0905 (UTC) FILETIME=[69638910:01CB9C62] X-Virus-Checked: Checked by ClamAV on apache.org --_18373c71-e660-42cf-93de-ff48a97e7b07_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi=2C Well... this is the full story. First I created=2C built and then installed the ClassLibrary1 project. Second I created ClassLibrary2=2C and add the dependecy (using add maven a= rtifact) to ClassLibrary1. then I built and installed the ClassLibrary2 pr= oject. Third I created ClassLibrary3=2C and add the dependecy (using add maven ar= tifact) to ClassLibrary2. then I built and installed the ClassLibrary3 pro= ject. Fourth I created ConsoleApplication1=2C and add the dependecy (using add m= aven artifact) to ClassLibrary3. then I built and installed the ConsoleApp= lication1 project. After all of the process I press in VS2008 SP1 the F5 to start the debuggin= process but when the debugger starts the dependecy with ClassLibrary2 Does= n't WORKS! So the tree dependency doesn't works. Honestly I do not find the error I'm generating. Please I need help. Here are the sources. ConsoleAplication1 Solution using System=3B using System.Collections.Ge= neric=3B using System.Linq=3B using System.Text=3B namespace ConsoleAppl= ication1 { class Program { static void Main(string[] args) { = ClassLibrary3.Class1 a =3D new ClassLibrary3.Class1()=3B Console.WriteL= ine(a.cadena)=3B } } }=20 ClassLibrary3 solution using System=3B using System.Collections.Generic=3B= using System.Linq=3B using System.Text=3B namespace ClassLibrary3 { pub= lic class Class1 { ClassLibrary2.Class1 a =3D new ClassLibrary2.Class1(= )=3B public string cadena=3B public Class1() { cadena =3D "Lib3 - " += a.cadena=3B } } }=20 ClassLibrary2 solution using System=3B using System.Collections.Generic=3B= using System.Linq=3B using System.Text=3B namespace ClassLibrary2 {=20 public class Class1 { public String cadena =3D "LIB 2"=3B public stri= ng getCadena() { return this.cadena=3B } } } =20 ClassLibrary1 solution using System=3B using System.Collections.Generic= =3B using System.Linq=3B using System.Text=3B namespace ClassLibrary1 = { public class Class1 { int n =3D 1=3B } }=20 If anything is missing please let me know Thanks again. See ya! > Date: Sun=2C 12 Dec 2010 20:32:42 -0800 > From: jocaba@maestrodev.com > To: npanday-users@incubator.apache.org > Subject: Re: NPanday dependency execution time doesn't work! >=20 > Hi are the 3 projects built on top of each other? like did you first buil= d=20 >=20 > ClassLibrary1 and then Build ClassLibrary2 after pointing to ClassLibrary= 1=2C and so on?=20 > Or are they built at the same time?=20 >=20 > NPanday can support this dependency tree build.=20 >=20 > It would be great if you can give us the scenario on how you built the pr= oject so that we can have a better idea on what caused the error.=20 >=20 > Thanks=2C=20 >=20 >=20 >=20 > --=20 > Joe Ocaba=20 >=20 = --_18373c71-e660-42cf-93de-ff48a97e7b07_--