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 set a property in my pom to a classpath containing all the project's dependencies. The ant plugin does something like this, so I know it's definitely possible.

I basically want to use ${maven.compile.classpath} wherever I like in my pom and have it 'just work'. I don't mind using plugins or anything else to achieve this.

Many thanks,

Nick

share|improve this question

3 Answers

up vote 5 down vote accepted

I don't think that there's a way of doing this without writing your own maven plugin. That said, you can get at the classpath using dependency:build-classpath. Is that of use?

share|improve this answer

This is how it works:

<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <version>1.7</version>
  <executions>
    <execution>
      <id>define-classpath</id>
      <phase>process-resources</phase>
      <goals>
        <goal>run</goal>
      </goals>
      <configuration>
        <exportAntProperties>true</exportAntProperties>
        <target>
          <property name="maven.classpath" refid="maven.runtime.classpath"/>
        </target>
      </configuration>
    </execution>
  </executions>
</plugin>

After it's executed you can use ${maven.classpath} property.

share|improve this answer
Exactly what i was looking for, it works, thanks :) – Toilal Aug 25 '12 at 21:38
I like this solution a lot, but because there is no antrun m2e connector I'm unable to use it. – Ring Jun 3 at 19:01

I second the dependency:build-classpath suggestion. It won't put it into a property currently but could easily be modified to do so. (patches accepted)

share|improve this answer
stackoverflow.com/questions/849389/… discusses how to load the result as a Maven property. An attachment in jira.codehaus.org/browse/MCOMPILER-97 offers a complete example. – Jesse Glick Jul 7 '11 at 16:09

Your Answer

 
discard

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