Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using maven-assembly plugin to create a jar of my application, including its dependencies as follows:

<assembly>
    <id>macosx</id>
    <formats>
       <format>tar.gz</format>
       <format>dir</format>
    </formats>
    <dependencySets>
        <dependencySet>
            <includes>
                <include>*:jar</include>
            </includes>
            <outputDirectory>lib</outputDirectory>
        </dependencySet>
    </dependencySets>
</assembly>

(I omitted some other stuff that is not related to the question)

So far this has worked fine because it creates a lib directory with all dependencies. However, I recently added a new dependency whose scope is system, and it does not copy it to the lib output directory. i must be missing something basic here, so I call for help.

The dependency that I just added is:

<dependency>
  <groupId>sourceforge.jchart2d</groupId>
  <artifactId>jchart2d</artifactId>
  <version>3.1.0</version>
  <scope>system</scope>
  <systemPath>${project.basedir}/external/jchart2d-3.1.0.jar</systemPath>
</dependency>

The only way I was able to include this dependency was by adding the following to the assembly element:

<files>
    <file>
        <source>external/jchart2d-3.1.0.jar</source>
        <outputDirectory>lib</outputDirectory>
    </file>
</files>

However, this forces me to change the pom and the assembly file whenever this jar is renamed, if ever. Also, it seems just wrong.

I have tried with <scope>runtime</scope> in the dependencySets and <include>sourceforge.jchart2d:jchart2d</include> with no luck.

So how do you include a system scoped jar to your assembly file in maven 2?

Thanks a lot

share|improve this question
The scope "runtime" wouldn't change the result, cause it's the default. – khmarbaise Nov 3 '11 at 6:38
I just pushed jchart2d to Maven Central! sourceforge.net/news/?group_id=50440 - enjoy! – halfdan Feb 25 at 15:34

4 Answers

up vote 22 down vote accepted

I'm not surprised that system scope dependencies are not added (after all, dependencies with a system scope must be explicitly provided by definition). Actually, if you really don't want to put that dependency in your local repository (for example because you want to distribute it as part of your project), this is what I would do:

  • I would put the dependency in a "file system repository" local to the project.
  • I would declare that repository in my pom.xml like this:

    <repositories>
      <repository>
        <id>my</id>
        <url>file://${basedir}/my-repo</url>
      </repository>
    </repositories>
    
  • I would just declare the artifact without the system scope, this is just a source of troubles:

    <dependency>
      <groupId>sourceforge.jchart2d</groupId>
      <artifactId>jchart2d</artifactId>
      <version>3.1.0</version>
    </dependency>
    

I'm not 100% sure this will suit your needs but I think it's a better solution than using the system scope.

Update: I should have mentioned that in my original answer and I'm fixing it now. To install a third party library in the file-based repository, use install:install-file with the localRepositoryPath parameter:

mvn install:install-file -Dfile=<path-to-file> \
                         -DgroupId=<myGroup> \
                         -DartifactId=<myArtifactId> \
                         -Dversion=<myVersion> \
                         -Dpackaging=<myPackaging> \
                         -DlocalRepositoryPath=<path-to-my-repo>

You can paste this as is in a *nix shell. On windows, remove the "\" and put everything on a single line.

share|improve this answer
Excellent idea, I will try it. – YuppieNetworking Jan 15 '10 at 9:53
It did work, but it was not a trivial task to install the file in a local repo different than $HOME/.m2/repository. I had to do a mvn install:install-file [...install-file options...] -Dmaven.repo.local=path_to_my_local_repo which forced maven to download its most basic plugins. Could you suggest how to install files to this local repo? – YuppieNetworking Jan 15 '10 at 13:43
I should have mentioned that :) I would have installed the artifact in the local repo (~/.m2/repository) with install:install-file and then moved the directory tree to ${basedir}/my-repo. I'd just delete unwanted stuff from ${basedir}/my-repo in your case. – Pascal Thivent Jan 15 '10 at 14:16
Yes, I eventually did that... it's not pretty, but it works. Thanks a lot. – YuppieNetworking Jan 15 '10 at 15:27

Btw you can automate it and make it a part of your maven build. The following will install your jar into your local repository before compilation:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-install-plugin</artifactId>
            <executions>
                <execution>
                    <id>hack-binary</id>
                    <phase>validate</phase>
                    <configuration>
                        <file>${basedir}/lib/your-lib.jar</file>
                        <repositoryLayout>default</repositoryLayout>
                        <groupId>your-group</groupId>
                        <artifactId>your-artifact</artifactId>
                        <version>0.1</version>
                        <packaging>jar</packaging>
                        <generatePom>true</generatePom>
                    </configuration>
                    <goals>
                        <goal>install-file</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
share|improve this answer
Doesn't it support installling multiple files at once? – Tuukka Mustonen Sep 22 '10 at 16:04
Wow, this is very nice! thank you so much! @Tuukka Mustonen you have to copy the <execution>...</execution> part for each file – timaschew Sep 25 '11 at 13:35
2  
Unfortunately this doesn't work. I came to this solution as well, thinking it seemed the easiest, however Maven requires all dependencies to be resolved before executing plugins bound to the validate phase (which precedes compile, etc...). Thus once the artifact is installed, this will re-install it, but it will not do an initial install - it's a chicken/egg problem. One could bind this to the clean phase (as that does not require dependency resolution first) and tell developers to first run mvn clean, but then it no longer works using "standard procedures" out of the box. – Chadwick Oct 12 '11 at 18:35

I find easy solution in case you creating jar

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-war-plugin</artifactId>
  <version>2.1.1</version>
  <configuration>
    <webResources>
    <resource>
      <directory>dependencies/mydep</directory>
        <targetPath>WEB-INF/lib</targetPath>
        <filtering>true</filtering>
        <includes>
           <include>**/*.jar</include>
        </includes>
    </resource>
  </webResources>
</configuration>
</plugin>
share|improve this answer
This is much more simpler...Why adding to local repo etc ? – Jigar Shah Apr 11 '12 at 20:41

You can also handle this via adding a supplemental dependencySet in your dependencySets.

<dependencySet>
  <scope>system</scope>
  <includes>
    <include>*:jar</include>
  </includes>
  <outputDirectory>lib</outputDirectory>
</dependencySet>

The best thing would be to use a Repository Manager (like Nexus, Artifactory, Archiva) and install this kind of dependency in a particular repository. After that you can use such things as a simple dependency. This will simplify your life.

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.