tags:

views:

218

answers:

1

I'm trying to put together an extremely simple proof-of-concept, but I can't get Maven to find any of the Tuscany SCA stuff. TIA.

+1  A: 

What do you have for your dependency entry?

it should be something like this:

     <dependency>
  <groupId>org.apache.tuscany.sca</groupId>
  <artifactId>tuscany-core</artifactId>
  <version>1.3</version>
 </dependency>
Jon Strayer
Using that exact dependency definition, I still get a "1 required artifact is missing" error. I suspect that Tuscany isn't in any of the standard repos but I can't find a repo definition that has what I am expecting so I don't know if the problem is my dependency definition, a missing repo definition, or both.
Hank Gay
Um, I looked in the central maven (2) repository to get the information. It can be a bit confusing to do it that way, I should have just read the pom. This works (I just tested it)<dependency> <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-core</artifactId> <version>1.3</version> </dependency>
Jon Strayer
The repository is at http://repo1.maven.org/maven2/
Jon Strayer
I fixed the dependency in my answer.
Jon Strayer