Ivan Artiukhov created IGNITE-26896:
---------------------------------------
Summary: Documentation: the "Getting Started with Ignite 3" page
is missing information about arequired dependency
Key: IGNITE-26896
URL: https://issues.apache.org/jira/browse/IGNITE-26896
Project: Ignite
Issue Type: Bug
Components: documentation ai3
Reporter: Ivan Artiukhov
h1. Steps
# Open the following Ignite 3 tutorial:
[https://ignite.apache.org/docs/ignite3/latest/quick-start/java-api]
# Go through the tutorial until the {{Configure Maven Dependencies}} section
# Try to build the project with the dependency described in this section
h1. Expected result
The project is built without errors
h1. Actual result
The project fails to build with the following error:
{noformat}
C:\Users\hr213\Work\ignite-3.1.0\ignite3.1.0-java-demo\src\main\java\com\example\Main.java:3:33java:
package org.apache.ignite.catalog does not exist{noformat}
h1. Notes
The project compiles OK If the following dependency is *added* into the POM:
{code:java}
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-catalog</artifactId>
<version>3.1.0</version>
</dependency> {code}
So we should correct the documentation page.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)