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

I'd like to place my output jar and jar-with-dependencies into another folder (not in target/ but in ../libs/)

How can I do that?

Thanks

share|improve this question
1  
One little Maven tip - don't fight it's preferences, it'll drive you insane :). But you can always use something like the ant plugin do do basically everything you want, like copying at the end of the build from target to ../libs... – cdegroot Jul 14 '11 at 6:59

1 Answer

up vote 3 down vote accepted

You can use the outputDirectory parameter of the maven-jar-plugin for this purpose:

<project>
  ...
  <build>
    <plugins>
      ...
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <configuration>
          <outputDirectory>../libs</outputDirectory>
        </configuration>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

But as cdegroot wrote, you should probably better not fight the maven way.

share|improve this answer
You might be right... – yelo3 Jul 14 '11 at 14:10
Maybe it's better to copy jars instead of moving them? – yelo3 Jul 14 '11 at 14:10
By the book I strongly suggest using the maven-dependency-plugin (maven.apache.org/plugins/maven-dependency-plugin) to resolve inter-module dependencies (If you need to transfer to a different module). – Torsten Jul 14 '11 at 14:27

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.