0

I want to add Weblogic-Application-Version: 2013-BLAH-BLAH to the manifest for deployment directly to weblogic.

Any ideas?

cmdematos
  • 883
  • 4
  • 12
  • 24

1 Answers1

0

IntelliJ IDEA can not do that automatically via its build runner. It is an IDE and not a build tool. So its build features, while decent, are limited. You have two options:

  1. Manually put the version into the Manifest.MF file before building with IDEA.
  2. Use a build tool such as Ant, Maven, or Gradle to build your webapp and add the entry.
Javaru
  • 30,412
  • 11
  • 93
  • 70