Hy List,

i've configured dependencies (libraries) als Scope "provided", and would aspect they are not packed to the destination war-File.

--- cut ---
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.2</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <version>1.4</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.activation</groupId>
      <artifactId>activation</artifactId>
      <version>1.1</version>
      <scope>provided</scope>
    </dependency>
--- cut ---

but these 3 Libraries are in my destination war-File.



How can i configure this Dependencies in right way that they are provided for compile, but are not in my destination war-File??

Thanks a lot.

Robert

Reply via email to