0

Typically all compiled classes go to the target directory. I have a project that wants the compiled classes in a different path. How can I tell Maven to put the compiled classes in a different directory?

Federico klez Culloca
  • 26,308
  • 17
  • 56
  • 95
Dale
  • 1,613
  • 4
  • 22
  • 42

1 Answers1

1

Set this in pom.xml

<build>
    <directory>/path/to/directory</directory>
</build>