maven isn't really setup to be able to "reach into" other projects, to use artifacts created in other projects, you should go through jars via the repo
You can however still do it by using the antrun plugin and ant's copy target with relative referencing "../project-a/target/classes", but doing so you loose true project independence (and you won't be able to add the projects individually to continuum if you use continuum). To stop the jar packaging you could: 1 - just call mvn compile in the common project, that won't jar up the classes 2 - change the project type in the pom from jar to pom, but then you'll have to setup each plugin you want to call since the jar lifecycle won't get called Couldn't you just add the class file post processing to the projects that the class files are compiled in? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
