I have a single class I want to exclude from the my WAR file. It is named Installer.class and is in the root package (no package).

I have tried this:

  <plugin>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
      <excludes>
        <exclude>**/Install*</exclude>
      </excludes>
    </configuration>
  </plugin>

and this:

  <plugin>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
      <excludes>**/Install*</excludes>
    </configuration>
  </plugin>

but neither work.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to