Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let's say I have

<parent>
  <module-prj-1>
  <module-prj-2>
  <module-prj-3>

Hypothetically, module-prj-1 is a project which is under development, but it is also a requirement for module-prj-2 and module-prj-3.

Let's say that the users of module-prj-2 aren't authorized to see the code of module-prj-1, but they require it as a dependency. Is there any way I can deploy module-prj-1 to my archiva repo as a library, so module-prj-2 and module-prj-3 users can still develop, without seeing the code of module-prj-1?

Still trying to figure this maven thing out .... thanks!

share|improve this question

2 Answers

up vote 0 down vote accepted

If you do not want that users of module-prj-2 see the code of module-prj-1, you should consider not using modules.

Define three distinct projects and that's it.

share|improve this answer
Thank you! excellent post – Sam Levin Nov 14 '11 at 15:27

Unless you are attaching the source your "jar" artifacts are deployed as a libraries only.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.