I have used Maven extensively for my personal projects, but now I have to set it up for a small team of 5-7 developers.

My main question is, what's the recommended approach for managing dependencies to commercial libraries that are not available in the Maven repos? How can I manage the dependency of these commercial libraries on the open source libraries that they use and are available in Maven repos?

Also, are there any other recommendations and advices that I should know or implement to make the setup as efficient, effective, and smooth as possible?

Thanks in advance.

link|improve this question

my prior answer on setting up a maven repo might be helpful too stackoverflow.com/questions/1039362/… – sal Jun 1 '10 at 19:26
added tag maven-2 as maven implies maven 1 – Sean Patrick Floyd Jun 2 '10 at 8:41
feedback

2 Answers

up vote 5 down vote accepted

You probably want to start by setting up your own internal Maven repository using Nexus or Artifactory. Configure it as a repository for your own artifacts, and as a caching proxy for Central and any other external repositories that you need to fetch stuff from.

Then create binary only POM files for each of the commercial libraries, including dependencies on the published libraries that they depend on. Upload the POM files and corresponding JAR files to your internal repository in the required structure. Just make sure that these POMs and JARs are not visible outside your group / organization ... depending on what the license for the respective commercial products permit / require.

Of course, this means that you won't be able to make your applications (that depend on these libraries) publicly available via Maven. But you've probably already factored this into your planning.

link|improve this answer
You can make your apps public but your consumers will need to add the private POM+JARs to their own repository (or proxy) just like you did. – Chris Nava May 29 '10 at 4:58
@Chris - agreed, but that is a LOT to ask of the consumers of your software! – Stephen C May 29 '10 at 5:08
Thanks. Any other advices and recommendations? – Behrang Saeedzadeh May 29 '10 at 6:35
@Stephen_C True. Wish it weren't so. :-( – Chris Nava May 30 '10 at 3:35
Use the Maven Repository Browser (mvnbrowser.com/index.html) to find a public repository for your dependencies. – Chris Nava May 30 '10 at 3:37
show 3 more comments
feedback

i strongly advise to use a super parent pom with some common settings like

                <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <inherited>true</inherited>
                <configuration>
                    <source>1.6</source><!-- java version -->
                    <target>1.6</target>
                    <encoding>UTF-8</encoding><!-- your source encodings -->
                    <debug>true</debug><!-- false for production -->
                    <optimize>false</optimize><!-- true for production -->
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>

actually there a lot of those "common" settings (report plugins), a parent pom guarantees that all use the same and a change reaches all

well what else - beside an own maven repo (try nexus) - ?

  • check used IDEs, Eclipse, Netbeans and IntelliJ have different levels of maven support and sad but true different behaviour, if you can, get your team to use one IDE
  • think about a build server like hudson
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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