Closed dzlab closed 10 years ago
I think you are missing a dependency on GridGain indexing functionality:
...
<dependency>
<groupId>org.gridgain</groupId>
<artifactId>gridgain-indexing</artifactId>
<version>${gridgain.version}</version>
</dependency>
...
Thanks for the quick reply, I've added this to my pom but still having the same problem!
<dependency>
<groupId>org.gridgain</groupId>
<artifactId>gridgain-fabric</artifactId>
<version>${gridgain.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.gridgain</groupId>
<artifactId>gridgain-indexing</artifactId>
<version>${gridgain.version}</version>
</dependency>
Can you put 6.5.0
instead of ${gridgain.version}
?
By the way, the gridgain-fabric
dependency already includes indexing, so no need to add it explicitly.
No way, same problem, but may be there is a conflict as in my pom I'm referencing com.h2database:h2:1.4.182
.
We don't support H2 1.4.182 the only supported version is 1.3.175
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.175</version>
</dependency>
H2 dependency is only needed if you plan to execute SQL queries in GridGain. If you don't, then you can just have dependency on gridgain-core
and, maybe, gridgain-spring
.
Many thanks, now by referencing gridgain-core
I don't see the exception.
I'm trying to get started with GridGain, but I'm having a strange
ClassNotFoundException
when callingGrid g = GridGain.start();
. Here is full stack trace:What I'm missing?