Details
-
Type: Improvement
-
Status: Resolved
-
Priority: Trivial
-
Resolution: Fixed
-
Affects Version/s: 0.10.0
-
Fix Version/s: 0.11.0
-
Component/s: Documentation
-
Labels:None
Description
On this page: http://kitesdk.org/docs/current/kite-morphlines/index.html – in the "Usage in your Maven Project" maven snippets – the 0.8.1 versions is still referenced, which didn't work for me, perhaps because the name changed from cdk to kitesdk and there is no 0.8.1 kitesdk version.
The change is needed in two snippets:
<dependency>
<groupId>org.kitesdk</groupId>
<artifactId>kite-morphlines-core</artifactId>
<version>0.10.0</version> <!-- or whatever the latest version is -->
</dependency>
<dependency>
<groupId>org.kitesdk</groupId>
<artifactId>kite-morphlines-all</artifactId>
<version>0.10.0</version> <!-- or whatever the latest version is -->
<type>pom</type>
</dependency>