github.com/qsunny/k8s@v0.0.0-20220101153623-e6dca256d5bf/examples-master/cassandra/java/pom.xml (about) 1 <!-- 2 Copyright (C) 2015 Google Inc. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 use this file except in compliance with the License. You may obtain a copy of 6 the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 License for the specific language governing permissions and limitations under 14 the License. 15 --> 16 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 17 <modelVersion>4.0.0</modelVersion> 18 <groupId>io.k8s.cassandra</groupId> 19 <artifactId>kubernetes-cassandra</artifactId> 20 <version>1.0.3</version> 21 <build> 22 <plugins> 23 <plugin> 24 <artifactId>maven-compiler-plugin</artifactId> 25 <version>3.5.1</version> 26 <configuration> 27 <source>1.8</source> 28 <target>1.8</target> 29 </configuration> 30 </plugin> 31 </plugins> 32 </build> 33 34 <properties> 35 <logback.version>1.1.3</logback.version> 36 <cassandra.version>3.11.2</cassandra.version> 37 </properties> 38 39 <dependencies> 40 <dependency> 41 <groupId>junit</groupId> 42 <artifactId>junit</artifactId> 43 <version>4.11</version> 44 <scope>test</scope> 45 </dependency> 46 <dependency> 47 <groupId>org.hamcrest</groupId> 48 <artifactId>hamcrest-all</artifactId> 49 <version>1.3</version> 50 <scope>test</scope> 51 </dependency> 52 <dependency> 53 <groupId>org.slf4j</groupId> 54 <artifactId>slf4j-api</artifactId> 55 <version>1.7.5</version> 56 <scope>provided</scope> 57 </dependency> 58 <dependency> 59 <groupId>ch.qos.logback</groupId> 60 <artifactId>logback-classic</artifactId> 61 <version>${logback.version}</version> 62 <scope>provided</scope> 63 </dependency> 64 <dependency> 65 <groupId>ch.qos.logback</groupId> 66 <artifactId>logback-core</artifactId> 67 <version>${logback.version}</version> 68 <scope>provided</scope> 69 </dependency> 70 71 <dependency> 72 <groupId>org.codehaus.jackson</groupId> 73 <artifactId>jackson-core-asl</artifactId> 74 <version>1.9.13</version> 75 <scope>provided</scope> 76 </dependency> 77 <dependency> 78 <groupId>org.codehaus.jackson</groupId> 79 <artifactId>jackson-mapper-asl</artifactId> 80 <version>1.9.13</version> 81 <scope>provided</scope> 82 </dependency> 83 84 <dependency> 85 <groupId>org.apache.cassandra</groupId> 86 <artifactId>cassandra-all</artifactId> 87 <version>${cassandra.version}</version> 88 <scope>provided</scope> 89 </dependency> 90 91 </dependencies> 92 </project>