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.
views:
218answers:
1
+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
2009-06-18 20:38:19
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
2009-06-23 14:03:46
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
2009-06-24 18:50:21
The repository is at http://repo1.maven.org/maven2/
Jon Strayer
2009-06-24 18:50:55
I fixed the dependency in my answer.
Jon Strayer
2009-06-24 18:53:11