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
  • 24,336
  • 15
  • 57
  • 93
Dale
  • 1,354
  • 4
  • 19
  • 40

1 Answers1

1

Set this in pom.xml

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