gridgain / gridgain-old

267 stars 85 forks source link

jdk8-backport dependency has incorrect maven type #1

Closed ghost closed 10 years ago

ghost commented 10 years ago

the jdk8-backport dependency is specified as type = pom in gridgain-datagrid-6.0.1.pom. This leads to ClassNotFound exceptions when including gridgain-datagrid as a project dependency.

I believe this:

<dependency>
    <groupId>org.gridgain</groupId>
    <artifactId>jdk8-backport</artifactId>
    <version>1.0</version>
    <type>pom</type>
</dependency>

Should be this:

<dependency>
    <groupId>org.gridgain</groupId>
    <artifactId>jdk8-backport</artifactId>
    <version>1.0</version>
</dependency>