Clean up of binding broker implementation
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-broker-impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         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.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>sal-binding-broker-impl</artifactId>
10         <packaging>bundle</packaging>
11
12         <build>
13                 <plugins>
14                         <plugin>
15                                 <groupId>org.apache.felix</groupId>
16                                 <artifactId>maven-bundle-plugin</artifactId>
17                                 <version>${maven.bundle.version}</version>
18                                 <extensions>true</extensions>
19                                 <configuration>
20                                         <instructions>
21                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
22                                                 <Bundle-Activator>org.opendaylight.controller.sal.binding.impl.BrokerActivator</Bundle-Activator>
23                                                 <Private-Package>
24                                                         org.opendaylight.controller.sal.binding.impl,
25                                                         org.opendaylight.controller.sal.binding.impl.utils,
26                                                         org.eclipse.xtend2.lib,
27                                                         org.eclipse.xtext.xbase.*
28                                                 </Private-Package>
29                                         </instructions>
30                                 </configuration>
31                         </plugin>
32
33                         <plugin>
34                                 <groupId>org.eclipse.xtend</groupId>
35                                 <artifactId>xtend-maven-plugin</artifactId>
36                                 <version>2.4.2</version>
37                                 <executions>
38                                         <execution>
39                                                 <goals>
40                                                         <goal>compile</goal>
41                                                 </goals>
42                                                 <configuration>
43                                                         <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
44                                                 </configuration>
45                                         </execution>
46                                 </executions>
47                         </plugin>
48                         <plugin>
49                                 <artifactId>maven-clean-plugin</artifactId>
50                                 <version>2.4.1</version>
51                                 <configuration>
52                                         <filesets>
53                                                 <fileset>
54                                                         <directory>${basedir}/src/main/xtend-gen</directory>
55                                                         <includes>
56                                                                 <include>**</include>
57                                                         </includes>
58                                                 </fileset>
59                                         </filesets>
60                                 </configuration>
61                         </plugin>
62                 </plugins>
63         </build>
64
65         <dependencies>
66                 <dependency>
67                         <groupId>org.opendaylight.controller</groupId>
68                         <artifactId>sal-common-util</artifactId>
69                         <version>1.0-SNAPSHOT</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.opendaylight.controller</groupId>
73                         <artifactId>sal-binding-api</artifactId>
74                         <version>1.0-SNAPSHOT</version>
75                 </dependency>
76                 <!-- >dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-core-api</artifactId> 
77                         <version>1.0-SNAPSHOT</version> </dependency -->
78
79                 <dependency>
80                         <groupId>org.slf4j</groupId>
81                         <artifactId>slf4j-api</artifactId>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.osgi</groupId>
85                         <artifactId>org.osgi.core</artifactId>
86                         <version>5.0.0</version>
87                 </dependency>
88                 <dependency>
89                         <groupId>com.google.guava</groupId>
90                         <artifactId>guava</artifactId>
91                         <type>jar</type>
92                 </dependency>
93                 <dependency>
94                         <groupId>org.reflections</groupId>
95                         <artifactId>reflections</artifactId>
96                         <version>0.9.9-RC1</version>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.javassist</groupId>
100                         <artifactId>javassist</artifactId>
101                         <version>3.17.1-GA</version>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.eclipse.xtend</groupId>
105                         <artifactId>org.eclipse.xtend.lib</artifactId>
106                         <version>2.4.2</version>
107                 </dependency>
108         </dependencies>
109 </project>