#115 - Harmonized package names.

We now consistently use example.springdata.$store as base package name.
This commit is contained in:
Oliver Gierke
2015-07-16 09:02:24 +02:00
parent 50cb4b9bba
commit bca4e65e4f
94 changed files with 388 additions and 302 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.mongodb;
package example.springdata.mongodb.geojson;
import static com.fasterxml.jackson.databind.DeserializationFeature.*;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.mongodb;
package example.springdata.mongodb.geojson;
import lombok.Data;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.mongodb;
package example.springdata.mongodb.geojson;
import java.util.List;

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.mongodb;
package example.springdata.mongodb.geojson;
import org.junit.ClassRule;
import org.junit.Test;
@@ -34,6 +34,9 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import example.springdata.mongodb.geojson.Application;
import example.springdata.mongodb.geojson.Store;
import example.springdata.mongodb.geojson.StoreRepository;
import example.springdata.mongodb.util.RequiresMongoDB;
/**