|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright (c) 2020 Pantheon Technologies s.r.o. All Rights Reserved. |
| 4 | +
|
| 5 | + This program and the accompanying materials are made available under the |
| 6 | + terms of the Eclipse Public License v1.0 which accompanies this distribution, |
| 7 | + and is available at https://www.eclipse.org/legal/epl-v10.html |
| 8 | +--> |
| 9 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <parent> |
| 13 | + <groupId>io.lighty.core</groupId> |
| 14 | + <artifactId>lighty-parent</artifactId> |
| 15 | + <version>12.2.1-SNAPSHOT</version> |
| 16 | + <relativePath>../lighty-parent</relativePath> |
| 17 | + </parent> |
| 18 | + |
| 19 | + <artifactId>lighty-clustering</artifactId> |
| 20 | + |
| 21 | + <name>${project.groupId}:${project.artifactId}</name> |
| 22 | + <url>https://github.com/PANTHEONtech/lighty-core</url> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>org.slf4j</groupId> |
| 27 | + <artifactId>slf4j-api</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.slf4j</groupId> |
| 31 | + <artifactId>slf4j-log4j12</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>commons-io</groupId> |
| 35 | + <artifactId>commons-io</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.json</groupId> |
| 39 | + <artifactId>json</artifactId> |
| 40 | + <version>20131018</version> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>io.fabric8</groupId> |
| 44 | + <artifactId>kubernetes-client</artifactId> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.github.spotbugs</groupId> |
| 48 | + <artifactId>spotbugs-annotations</artifactId> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>com.google.guava</groupId> |
| 52 | + <artifactId>guava</artifactId> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.apache.httpcomponents</groupId> |
| 56 | + <artifactId>httpclient</artifactId> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <!--ODL dependencies--> |
| 60 | + <dependency> |
| 61 | + <groupId>org.opendaylight.mdsal</groupId> |
| 62 | + <artifactId>mdsal-binding-api</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.opendaylight.mdsal</groupId> |
| 66 | + <artifactId>yang-binding</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.opendaylight.controller</groupId> |
| 70 | + <artifactId>sal-cluster-admin-api</artifactId> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.opendaylight.controller</groupId> |
| 74 | + <artifactId>sal-distributed-datastore</artifactId> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.opendaylight.mdsal</groupId> |
| 78 | + <artifactId>mdsal-singleton-common-api</artifactId> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.opendaylight.controller</groupId> |
| 82 | + <artifactId>sal-distributed-eos</artifactId> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <!--akka management and bootstrap--> |
| 86 | + <dependency> |
| 87 | + <groupId>com.lightbend.akka.discovery</groupId> |
| 88 | + <artifactId>akka-discovery-kubernetes-api_2.12</artifactId> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>com.lightbend.akka.management</groupId> |
| 92 | + <artifactId>akka-management_2.12</artifactId> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>com.lightbend.akka.management</groupId> |
| 96 | + <artifactId>akka-management-cluster-http_2.12</artifactId> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>com.lightbend.akka.management</groupId> |
| 100 | + <artifactId>akka-management-cluster-bootstrap_2.12</artifactId> |
| 101 | + </dependency> |
| 102 | + |
| 103 | + <dependency> |
| 104 | + <groupId>com.typesafe.akka</groupId> |
| 105 | + <artifactId>akka-actor_2.12</artifactId> |
| 106 | + </dependency> |
| 107 | + </dependencies> |
| 108 | + |
| 109 | +</project> |
0 commit comments