soulgalore / jdbcmetrics

Get information from your JDBC driver.
39 stars 12 forks source link

Set servlet-api to provided scope to avoid conflicts. #20

Closed mwanji closed 10 years ago

mwanji commented 10 years ago

As the servlet API is already present in servlet containers, it is wrong to put it in compile scope.

In my case, it even created a compile-time problem in Eclipse, because I had the servlet 3.0 API in test scope and it was replaced by the 2.5 API, leading to missing methods.

soulgalore commented 10 years ago

ah thanks @mwanji !