rajjaiswalsaumya / webutilities

Automatically exported from code.google.com/p/webutilities
0 stars 0 forks source link

The scope of dependency servlet-api should be provided #28

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I need to use

    <dependency>
      <groupId>com.googlecode.webutilities</groupId>
      <artifactId>webutilities</artifactId>
      <version>0.0.5</version>
      <exclusions>
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

or all filters cannot cast by container.(I use tomcat 7)

I think

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>

Will fix my problem.

Original issue reported on code.google.com by iron9li...@gmail.com on 11 Jan 2012 at 4:51

GoogleCodeExporter commented 8 years ago

Original comment by rr.patil...@gmail.com on 16 Jan 2012 at 10:44

GoogleCodeExporter commented 8 years ago
https://github.com/rpatil26/webutilities/commit/6679450aec4e818c5e462ed6238b3b22
dce90df7

Original comment by rr.patil...@gmail.com on 22 Feb 2013 at 8:59