DATACASS-448 - Relocate CQL, mapping and convert packages.

We relocated packages of the former Spring CQL module and mapping/convert packages of the Spring Data Cassandra module:

org.springframework.cassandra -> org.springframework.data.cql
org.springframework.cassandra.core.cql.generator -> org.springframework.data.cql.core.generator
org.springframework.cassandra.core.cql -> org.springframework.data.cql.core
org.springframework.data.cassandra.convert -> org.springframework.data.cassandra.core.convert
org.springframework.data.cassandra.mapping -> org.springframework.data.cassandra.core.mapping
This commit is contained in:
Mark Paluch
2017-05-23 15:21:49 +02:00
parent 206999725a
commit 2b3f70ea92
521 changed files with 1812 additions and 1845 deletions

View File

@@ -152,8 +152,8 @@ First, create a simple domain object class to persist.
----
package org.spring.data.cassandra.example;
import org.springframework.data.cassandra.mapping.PrimaryKey;
import org.springframework.data.cassandra.mapping.Table;
import org.springframework.data.cassandra.core.mapping.PrimaryKey;
import org.springframework.data.cassandra.core.mapping.Table;
@Table
public class Person {