In my project I've got some ejb-client dependencies. Every thing is working perfectly except maven-release-plugin. It says that I don't have the ejb-client jars in the repository.
[INFO] Failed to resolve artifact. Missing: ---------- com.mycompany.services:project-service-task:ejb-client:client:1.0.1 I don't know why it doesn't take the file from the target folder like it does with the other jars and wars. If I change ejb-client to ejb it works. I manage to find a workaround by running like this: a.. release:prepare - witch throws an error but modifies the pom.xml files from 1.0.0-snapshots to 1.0.0 b.. install - put the files in the local repositories c.. release:prepare - witch starts from where it left off d.. release:perform - no problem here Does anybody knows if the release plugin has a problem with ejb-client dependencies? I am using maven 2.0.4 and the maven-release-plugin is version 2.0-beta-4.
