Skip to content

Commit 609fdc6

Browse files
committed
Adding initial files
1 parent a1844ce commit 609fdc6

File tree

3 files changed

+21
-67
lines changed

3 files changed

+21
-67
lines changed

spring-data-cassandra/pom.xml

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<org.springframework.data.version>1.3.1.RELEASE</org.springframework.data.version>
15-
<org.springframework.version>4.2.2.RELEASE</org.springframework.version>
16-
<org.hamcrest.version>1.3</org.hamcrest.version>
14+
<org.springframework.data.version>1.1.0.RELEASE</org.springframework.data.version>
15+
<org.springframework.version>4.0.7.RELEASE</org.springframework.version>
1716
<junit.version>4.11</junit.version>
1817
<org.slf4j.version>1.7.12</org.slf4j.version>
1918
<logback.version>1.1.3</logback.version>
@@ -41,23 +40,16 @@
4140
</dependency>
4241

4342
<dependency>
44-
<groupId>org.hamcrest</groupId>
45-
<artifactId>hamcrest-core</artifactId>
46-
<version>${org.hamcrest.version}</version>
47-
<scope>test</scope>
48-
</dependency>
49-
50-
<dependency>
51-
<groupId>org.hamcrest</groupId>
52-
<artifactId>hamcrest-library</artifactId>
53-
<version>${org.hamcrest.version}</version>
43+
<groupId>org.springframework</groupId>
44+
<artifactId>spring-test</artifactId>
45+
<version>${org.springframework.version}</version>
5446
<scope>test</scope>
5547
</dependency>
5648

5749
<dependency>
58-
<groupId>org.springframework</groupId>
59-
<artifactId>spring-test</artifactId>
60-
<version>${org.springframework.version}</version>
50+
<groupId>org.cassandraunit</groupId>
51+
<artifactId>cassandra-unit-spring</artifactId>
52+
<version>2.1.3.1</version>
6153
<scope>test</scope>
6254
</dependency>
6355

@@ -86,4 +78,17 @@
8678
</dependency>
8779

8880
</dependencies>
81+
<build>
82+
<plugins>
83+
<plugin>
84+
<artifactId>maven-compiler-plugin</artifactId>
85+
<version>2.3.2</version>
86+
<configuration>
87+
<source>1.8</source>
88+
<target>1.8</target>
89+
</configuration>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
8994
</project>

spring-data-cassandra/src/main/java/org/baeldung/App.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

spring-data-cassandra/src/test/java/org/baeldung/AppTest.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)