BUG-625: remove use of xtend plugin and libraries
[controller.git] / opendaylight / md-sal / sal-common-impl / 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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-common-impl</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.eclipse.xtend</groupId>
19       <artifactId>org.eclipse.xtend.lib</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-common-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-common-util</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-data-impl</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-model-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.mockito</groupId>
44       <artifactId>mockito-all</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <configuration>
55           <instructions>
56             <Export-Package>org.opendaylight.controller.md.sal.common.impl,
57                             org.opendaylight.controller.md.sal.common.impl.*</Export-Package>
58           </instructions>
59         </configuration>
60       </plugin>
61       <plugin>
62         <groupId>org.eclipse.xtend</groupId>
63         <artifactId>xtend-maven-plugin</artifactId>
64       </plugin>
65     </plugins>
66   </build>
67   <scm>
68     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
69     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
70     <tag>HEAD</tag>
71     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
72   </scm>
73
74 </project>