You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Pranas Baliuka (JIRA)" <ji...@apache.org> on 2017/08/23 01:15:00 UTC

[jira] [Created] (IGNITE-6164) H2 dependency is not resolved from ignite-indexing:2.1.0

Pranas Baliuka created IGNITE-6164:
--------------------------------------

             Summary: H2 dependency is not resolved from ignite-indexing:2.1.0
                 Key: IGNITE-6164
                 URL: https://issues.apache.org/jira/browse/IGNITE-6164
             Project: Ignite
          Issue Type: Bug
            Reporter: Pranas Baliuka
            Priority: Minor


I've tested the first code sample from Ignite book code https://github.com/srecon/ignite-book-code-samples with dependecies:

{code}
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <ignite.version>2.1.0</ignite.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-core</artifactId>
            <version>${ignite.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-spring</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.ignite</groupId>
            <artifactId>ignite-indexing</artifactId>
        </dependency>
    </dependencies>
{code}

Runtime exception indicates what transitive dependency:
{code}
<dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>1.4.195</version>
            <scope>runtime</scope>
        </dependency>
{code}

is not resolved from the {{ignite-indexing}} . Consider fixing



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)