Skip to content

Instantly share code, notes, and snippets.

@dnorton
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnorton/e4151a2f9e9ed1f64ba3 to your computer and use it in GitHub Desktop.
Save dnorton/e4151a2f9e9ed1f64ba3 to your computer and use it in GitHub Desktop.
Maven and IntelliJ slap fight

IntelliJ doesn't play well with Maven if directories don't use the correct capitalization.

<resource>
        <directory>${basedir}/src/java</directory>
        <includes>
          <include>*.xml</include>
        </includes>
</resource>

This configuration caused a problem because the directory was actually ${basedir}/src/Java.

OS: Windows 7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment