Aman06 / dkpro-wsd

Automatically exported from code.google.com/p/dkpro-wsd
0 stars 0 forks source link

Wrong dependency for log4j #62

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Depends on a OSGi artifact for log4j which is not on the regular Maven Central:

 <dependency>
    <groupId>org.apache.log4j</groupId>
    <artifactId>org.apache.log4j</artifactId>
    <version>1.2.13.v200706111418</version>
 </dependency>

Should be:

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.17</version>
    </dependency>

Original issue reported on code.google.com by richard.eckart on 27 Nov 2014 at 2:54

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r247.

Original comment by richard.eckart on 27 Nov 2014 at 2:55