|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>org.baeldung</groupId> |
6 | | - <artifactId>spring-data-cassandra</artifactId> |
7 | | - <version>0.0.1-SNAPSHOT</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <name>spring-data-cassandra</name> |
11 | | - |
12 | | - <properties> |
13 | | - <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 | | - <junit.version>4.11</junit.version> |
17 | | - <org.slf4j.version>1.7.12</org.slf4j.version> |
18 | | - <logback.version>1.1.3</logback.version> |
19 | | - </properties> |
20 | | - |
21 | | - <dependencies> |
22 | | - |
23 | | - <dependency> |
24 | | - <groupId>org.springframework.data</groupId> |
25 | | - <artifactId>spring-data-cassandra</artifactId> |
26 | | - <version>${org.springframework.data.version}</version> |
27 | | - </dependency> |
28 | | - |
29 | | - <dependency> |
30 | | - <groupId>org.springframework</groupId> |
31 | | - <artifactId>spring-core</artifactId> |
32 | | - <version>${org.springframework.version}</version> |
33 | | - </dependency> |
34 | | - |
35 | | - <dependency> |
36 | | - <groupId>junit</groupId> |
37 | | - <artifactId>junit-dep</artifactId> |
38 | | - <version>${junit.version}</version> |
39 | | - <scope>test</scope> |
40 | | - </dependency> |
41 | | - |
42 | | - <dependency> |
43 | | - <groupId>org.springframework</groupId> |
44 | | - <artifactId>spring-test</artifactId> |
45 | | - <version>${org.springframework.version}</version> |
46 | | - <scope>test</scope> |
47 | | - </dependency> |
48 | | - |
49 | | - <dependency> |
50 | | - <groupId>org.cassandraunit</groupId> |
51 | | - <artifactId>cassandra-unit-spring</artifactId> |
52 | | - <version>2.1.9.2</version> |
53 | | - <scope>test</scope> |
54 | | - <exclusions> |
55 | | - <exclusion> |
56 | | - <groupId>org.cassandraunit</groupId> |
57 | | - <artifactId>cassandra-unit</artifactId> |
58 | | - </exclusion> |
59 | | - </exclusions> |
60 | | - </dependency> |
61 | | - <dependency> |
62 | | - <groupId>org.cassandraunit</groupId> |
63 | | - <artifactId>cassandra-unit-shaded</artifactId> |
64 | | - <version>2.1.9.2</version> |
65 | | - <scope>test</scope> |
66 | | - </dependency> |
67 | | - <dependency> |
68 | | - <groupId>org.hectorclient</groupId> |
69 | | - <artifactId>hector-core</artifactId> |
70 | | - <version>2.0-0</version> |
71 | | - <!--<exclusions>--> |
72 | | - <!--<exclusion>--> |
73 | | - <!--<groupId>org.slf4j</groupId>--> |
74 | | - <!--<artifactId>slf4j-log4j12</artifactId>--> |
75 | | - <!--</exclusion>--> |
76 | | - <!--<exclusion>--> |
77 | | - <!--<groupId>commons-lang</groupId>--> |
78 | | - <!--<artifactId>commons-lang</artifactId>--> |
79 | | - <!--</exclusion>--> |
80 | | - <!--<exclusion>--> |
81 | | - <!--<groupId>com.google.guava</groupId>--> |
82 | | - <!--<artifactId>guava</artifactId>--> |
83 | | - <!--</exclusion>--> |
84 | | - <!--</exclusions>--> |
85 | | - </dependency> |
86 | | - <dependency> |
87 | | - <groupId>com.datastax.cassandra</groupId> |
88 | | - <artifactId>cassandra-driver-core</artifactId> |
89 | | - <version>2.1.5</version> |
90 | | - <optional>true</optional> |
91 | | - <!--<exclusions>--> |
92 | | - <!--<exclusion>--> |
93 | | - <!--<groupId>com.google.guava</groupId>--> |
94 | | - <!--<artifactId>guava</artifactId>--> |
95 | | - <!--</exclusion>--> |
96 | | - <!--</exclusions>--> |
97 | | - </dependency> |
98 | | - |
99 | | - |
100 | | - <dependency> |
101 | | - <groupId>org.slf4j</groupId> |
102 | | - <artifactId>slf4j-api</artifactId> |
103 | | - <version>${org.slf4j.version}</version> |
104 | | - </dependency> |
105 | | - |
106 | | - <dependency> |
107 | | - <groupId>ch.qos.logback</groupId> |
108 | | - <artifactId>logback-classic</artifactId> |
109 | | - <version>${logback.version}</version> |
110 | | - </dependency> |
111 | | - |
112 | | - <dependency> |
113 | | - <groupId>org.slf4j</groupId> |
114 | | - <artifactId>jcl-over-slf4j</artifactId> |
115 | | - <version>${org.slf4j.version}</version> |
116 | | - </dependency> |
117 | | - |
118 | | - <dependency> |
119 | | - <groupId>org.slf4j</groupId> |
120 | | - <artifactId>log4j-over-slf4j</artifactId> |
121 | | - <version>${org.slf4j.version}</version> |
122 | | - </dependency> |
123 | | - |
124 | | - </dependencies> |
125 | | - <build> |
126 | | - <plugins> |
127 | | - <plugin> |
128 | | - <artifactId>maven-compiler-plugin</artifactId> |
129 | | - <version>2.3.2</version> |
130 | | - <configuration> |
131 | | - <source>1.7</source> |
132 | | - <target>1.7</target> |
133 | | - </configuration> |
134 | | - </plugin> |
135 | | - </plugins> |
136 | | - </build> |
137 | | - |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>org.baeldung</groupId> |
| 6 | + <artifactId>spring-data-cassandra</artifactId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>spring-data-cassandra</name> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <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 | + <junit.version>4.11</junit.version> |
| 17 | + <org.slf4j.version>1.7.12</org.slf4j.version> |
| 18 | + <logback.version>1.1.3</logback.version> |
| 19 | + <cassandra-driver-core.version>2.1.5</cassandra-driver-core.version> |
| 20 | + <cassandra-unit-spring.version>2.1.9.2</cassandra-unit-spring.version> |
| 21 | + <cassandra-unit-shaded>2.1.9.2</cassandra-unit-shaded> |
| 22 | + <hector-core.version>2.0-0</hector-core.version> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <dependencies> |
| 26 | + <dependency> |
| 27 | + <groupId>org.springframework.data</groupId> |
| 28 | + <artifactId>spring-data-cassandra</artifactId> |
| 29 | + <version>${org.springframework.data.version}</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.springframework</groupId> |
| 33 | + <artifactId>spring-core</artifactId> |
| 34 | + <version>${org.springframework.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>junit</groupId> |
| 38 | + <artifactId>junit-dep</artifactId> |
| 39 | + <version>${junit.version}</version> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework</groupId> |
| 44 | + <artifactId>spring-test</artifactId> |
| 45 | + <version>${org.springframework.version}</version> |
| 46 | + <scope>test</scope> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.cassandraunit</groupId> |
| 50 | + <artifactId>cassandra-unit-spring</artifactId> |
| 51 | + <version>${cassandra-unit-spring.version}</version> |
| 52 | + <scope>test</scope> |
| 53 | + <exclusions> |
| 54 | + <exclusion> |
| 55 | + <groupId>org.cassandraunit</groupId> |
| 56 | + <artifactId>cassandra-unit</artifactId> |
| 57 | + </exclusion> |
| 58 | + </exclusions> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.cassandraunit</groupId> |
| 62 | + <artifactId>cassandra-unit-shaded</artifactId> |
| 63 | + <version>${cassandra-unit-shaded}</version> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.hectorclient</groupId> |
| 68 | + <artifactId>hector-core</artifactId> |
| 69 | + <version>${hector-core.version}</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.datastax.cassandra</groupId> |
| 73 | + <artifactId>cassandra-driver-core</artifactId> |
| 74 | + <version>${cassandra-driver-core.version}</version> |
| 75 | + <optional>true</optional> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.slf4j</groupId> |
| 79 | + <artifactId>slf4j-api</artifactId> |
| 80 | + <version>${org.slf4j.version}</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>ch.qos.logback</groupId> |
| 84 | + <artifactId>logback-classic</artifactId> |
| 85 | + <version>${logback.version}</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.slf4j</groupId> |
| 89 | + <artifactId>jcl-over-slf4j</artifactId> |
| 90 | + <version>${org.slf4j.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.slf4j</groupId> |
| 94 | + <artifactId>log4j-over-slf4j</artifactId> |
| 95 | + <version>${org.slf4j.version}</version> |
| 96 | + </dependency> |
| 97 | + </dependencies> |
| 98 | + <build> |
| 99 | + <plugins> |
| 100 | + <plugin> |
| 101 | + <artifactId>maven-compiler-plugin</artifactId> |
| 102 | + <version>2.3.2</version> |
| 103 | + <configuration> |
| 104 | + <source>1.7</source> |
| 105 | + <target>1.7</target> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + </plugins> |
| 109 | + </build> |
138 | 110 | </project> |
0 commit comments