I tried to build it and there are missing snapshot dependencies, like org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-26-SNAPSHOT
Please make sure that either you use released versions (1.0-alpha-26 was released time ago) or you add the snapshot repos to the pom so it can be easily built. I fixed that one, but there are still some others missing Do you really need plexus-container-default for compilation? your code shouldn't probably be aware of that one, at most just the plexus api should be needed Using org.apache.maven as groupId is not a good idea, you should extend the mojo sandbox parent pom, so you can deploy snapshots to the codehaus repo. The prefuse snapshot you can put it in the mojo snapshot repository dav:https://dav.codehaus.org/snapshots.repository/mojo/ but in the org.codehaus.mojo groupId so it doesn't clash with the official one and I think it won't be available under any other groupId. Do you really need a snapshot? The prefuse jar seems to be compiled under Java 6, because I have 5 and I get this error D:\dev\mojo\mojo-sandbox\maven-diagram-maker\diagrams-gui\src\main\java\org\apache\maven\diagrams\gui\controller\MainController.java:[33,-1] cannot access prefuse.Constants bad class file: C:\Documents and Settings\csanchez\.m2\repository\org\prefuse\prefuse\beta-20070723-SNAPSHOT\prefuse-beta-20070723-SNAPSHOT.jar(prefuse/Constants.class) class file has wrong version 50.0, should be 49.0 I got a test error testGetMavenProject(org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContextTest) ------------------------------------------------------------------------------- Test set: org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContextTest ------------------------------------------------------------------------------- Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 3.172 sec <<< FAILURE! testGetMavenProject(org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContextTest) Time elapsed: 3.125 sec <<< ERROR! org.apache.maven.diagrams.connector_api.ConnectorException: Embadded maven exception at org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContext.prepareMavenProject(RunMavenConnectorContext.java:149) at org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContext.getMavenProject(RunMavenConnectorContext.java:77) at org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContextTest.testGetMavenProject(RunMavenConnectorContextTest.java:19) Caused by: org.apache.maven.reactor.MavenExecutionException: Some builds failed at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:153) at org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:906) at org.apache.maven.diagrams.connector_api.context.RunMavenConnectorContext.prepareMavenProject(RunMavenConnectorContext.java:145) ... 28 more I don't know if you are storing the output somewhere to see the cause. Also you need to configure SVN as explained in http://maven.apache.org/developers/committer-environment.html so the files have the right line ending in linux and windows I'll give it another try when some issues get solved -- I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
