Pull in com.typesafe:config from odlparent
[controller.git] / features / akka / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  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 http://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    <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>features-parent</artifactId>
14     <version>1.6.0-SNAPSHOT</version>
15     <relativePath/>
16    </parent>
17    <artifactId>features-akka</artifactId>
18    <groupId>org.opendaylight.controller</groupId>
19    <version>1.6.0-SNAPSHOT</version>
20    <packaging>pom</packaging>
21    <properties>
22       <features.file>features.xml</features.file>
23       <branding.version>1.2.0-SNAPSHOT</branding.version>
24       <karaf.resources.version>1.6.0-SNAPSHOT</karaf.resources.version>
25       <feature.test.version>0.8.0-SNAPSHOT</feature.test.version>
26       <karaf.empty.version>1.6.0-SNAPSHOT</karaf.empty.version>
27       <surefire.version>2.16</surefire.version>
28       <akka.version>2.3.14</akka.version>
29       <scala.version>2.10</scala.version>
30    </properties>
31     <dependencyManagement>
32         <dependencies>
33             <dependency>
34                 <groupId>org.opendaylight.controller</groupId>
35                 <artifactId>commons.opendaylight</artifactId>
36                 <version>1.6.0-SNAPSHOT</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42    <dependencies>
43     <dependency>
44       <groupId>org.scala-lang</groupId>
45       <artifactId>scala-library</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.scala-lang</groupId>
49       <artifactId>scala-reflect</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.typesafe</groupId>
53       <artifactId>config</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>com.typesafe.akka</groupId>
57       <artifactId>akka-actor_${scala.version}</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.typesafe.akka</groupId>
61       <artifactId>akka-slf4j_${scala.version}</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>com.typesafe.akka</groupId>
65       <artifactId>akka-osgi_${scala.version}</artifactId>
66     </dependency>
67     <dependency>
68         <groupId>org.uncommons.maths</groupId>
69         <artifactId>uncommons-maths</artifactId>
70         <exclusions>
71             <exclusion>
72                 <groupId>jfree</groupId>
73                 <artifactId>jcommon</artifactId>
74             </exclusion>
75             <exclusion>
76                 <groupId>jfree</groupId>
77                 <artifactId>jfreechart</artifactId>
78             </exclusion>
79         </exclusions>
80     </dependency>
81     <dependency>
82       <groupId>com.google.protobuf</groupId>
83       <artifactId>protobuf-java</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>io.netty</groupId>
87       <artifactId>netty</artifactId>
88       <version>3.8.0.Final</version>
89     </dependency>
90     <dependency>
91       <groupId>com.typesafe.akka</groupId>
92       <artifactId>akka-remote_${scala.version}</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>com.typesafe.akka</groupId>
96       <artifactId>akka-cluster_${scala.version}</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.iq80.leveldb</groupId>
100       <artifactId>leveldb</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.fusesource.leveldbjni</groupId>
104       <artifactId>leveldbjni-all</artifactId>
105     </dependency>
106     <!-- test to validate features.xml -->
107     <dependency>
108       <groupId>org.opendaylight.odlparent</groupId>
109       <artifactId>features-test</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <!-- dependency for opendaylight-karaf-empty for use by testing -->
113     <dependency>
114       <groupId>org.opendaylight.controller</groupId>
115       <artifactId>opendaylight-karaf-empty</artifactId>
116       <version>${karaf.empty.version}</version>
117       <scope>test</scope>
118       <type>zip</type>
119     </dependency>
120     <!-- Uncomment this if you get an error : java.lang.NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Lorg/slf4j/helpers/FormattingTuple;
121     <dependency>
122       <groupId>org.slf4j</groupId>
123       <artifactId>slf4j-simple</artifactId>
124       <version>1.7.2</version>
125     </dependency>
126     -->
127
128    </dependencies>
129    <scm>
130       <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
131       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
132       <tag>HEAD</tag>
133       <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
134    </scm>
135 </project>