Rana Patil wrote:
hi,
I ran below mentioned commant to generate project files so that i can
import the project on Eclipse.
/mvn -Peclipse eclipse:eclipse/
But, i am getting build error and it's failed to resovle the
demo-bigbank:jar:1.7-SNAPSHOT and demo-bigbank-account:jar:1.7-SNAPSHOT.
If I have to install those manually, can someone please help me to point
to correct URL/location.
I tried all mentioned in the error message, Couldn't searc for those..
maven2.repo (http://repo1.maven.org/maven2/),
apache.snapshots (http://repository.apache.org/snapshots),
ibiblio (http://mirrors.ibiblio.org/pub/mirrors/maven2/),
central (http://repo1.maven.org/maven2),
indiana (http://ftp.ussg.iu.edu/eclipse/modeling/emf/emf/maven2/),
apache.incubator (http://people.apache.org/repo/m2-incubating-repository),
osuosl.org <http://osuosl.org>
(http://ftp.osuosl.org/pub/eclipse/tools/emf/maven2)
Best regards,
Rana
>
The recommended command is mvn eclipse:eclipse (without -Peclipse).
Did you find something on the Tuscany website telling you to use
the -Peclipse option?
However, I don't think that's the cause of your problem. The demos
directory isn't part of the default top-level build, so to build the
jars that you mentioned (demo-bigbank and demo-bigbank-account), you
need to do the following:
cd demos
mvn
This will build the demo jars and install them in your local maven repo.
Simon