Just wondering if anyone knows the answer to this. Not sure if it is a bug or if I am just not doing it right.

Thanks.

-- Mark Reynolds

Mark Reynolds wrote:
I have a single class I want to exclude from the my WAR file. It is named Install.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