commons-lang dependency should be scope=test
[controller.git] / opendaylight / md-sal / sal-akka-raft / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>1.9.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-akka-raft</artifactId>
13   <version>1.9.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-clustering-commons</artifactId>
20     </dependency>
21
22     <dependency>
23       <groupId>com.typesafe.akka</groupId>
24       <artifactId>akka-actor_2.12</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>com.typesafe.akka</groupId>
29       <artifactId>akka-cluster_2.12</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>com.typesafe.akka</groupId>
34       <artifactId>akka-persistence_2.12</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>com.typesafe.akka</groupId>
39       <artifactId>akka-remote_2.12</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>com.typesafe.akka</groupId>
44       <artifactId>akka-testkit_2.12</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>org.osgi</groupId>
50       <artifactId>org.osgi.core</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.scala-lang</groupId>
55       <artifactId>scala-library</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>org.apache.commons</groupId>
60       <artifactId>commons-lang3</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>com.typesafe.akka</groupId>
65       <artifactId>akka-slf4j_2.12</artifactId>
66     </dependency>
67
68     <!-- Test Dependencies -->
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.slf4j</groupId>
76       <artifactId>slf4j-simple</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>commons-io</groupId>
81       <artifactId>commons-io</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>commons-lang</groupId>
86       <artifactId>commons-lang</artifactId>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <extensions>true</extensions>
98         <configuration>
99           <instructions>
100             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
101             <Export-package>org.opendaylight.cluster.raft</Export-package>
102             <DynamicImport-Package>*</DynamicImport-Package>
103           </instructions>
104         </configuration>
105       </plugin>
106
107       <plugin>
108         <groupId>org.apache.maven.plugins</groupId>
109         <artifactId>maven-jar-plugin</artifactId>
110         <executions>
111           <execution>
112             <goals>
113               <goal>test-jar</goal>
114             </goals>
115           </execution>
116         </executions>
117       </plugin>
118     </plugins>
119   </build>
120
121   <scm>
122     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
123     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
124     <tag>HEAD</tag>
125     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
126   </scm>
127
128 </project>