Removed xTend from private packages. Added OSGI-fied XTend to distribution
[controller.git] / opendaylight / md-sal / sal-binding-broker / 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     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15     </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.felix</groupId>
21                 <artifactId>maven-bundle-plugin</artifactId>
22                 <extensions>true</extensions>
23                 <configuration>
24                     <instructions>
25                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
26                         <Bundle-Activator>org.opendaylight.controller.sal.binding.impl.BrokerActivator</Bundle-Activator>
27                         <Private-Package>
28                             org.opendaylight.controller.sal.binding.impl,
29                             org.opendaylight.controller.sal.binding.impl.*,
30                             org.opendaylight.controller.sal.binding.codegen.*,
31                         </Private-Package>
32                     </instructions>
33                 </configuration>
34             </plugin>
35             <plugin>
36                 <groupId>org.eclipse.xtend</groupId>
37                 <artifactId>xtend-maven-plugin</artifactId>
38             </plugin>
39             <plugin>
40                 <artifactId>maven-clean-plugin</artifactId>
41             </plugin>
42         </plugins>
43     </build>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-common-util</artifactId>
49             <version>1.0-SNAPSHOT</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-common-impl</artifactId>
54             <version>1.0-SNAPSHOT</version>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-api</artifactId>
59             <version>1.0-SNAPSHOT</version>
60         </dependency>
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.osgi</groupId>
67             <artifactId>org.osgi.core</artifactId>
68             <version>${osgi.core.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>com.google.guava</groupId>
72             <artifactId>guava</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.reflections</groupId>
76             <artifactId>reflections</artifactId>
77             <version>0.9.9-RC1</version>
78         </dependency>
79         <dependency>
80             <groupId>org.javassist</groupId>
81             <artifactId>javassist</artifactId>
82             <version>3.17.1-GA</version>
83         </dependency>
84         <dependency>
85             <groupId>junit</groupId>
86             <artifactId>junit</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.mockito</groupId>
91             <artifactId>mockito-all</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.eclipse.xtend</groupId>
96             <artifactId>org.eclipse.xtend.lib</artifactId>
97         </dependency>
98         <dependency>
99           <groupId>junit</groupId>
100           <artifactId>junit</artifactId>
101         </dependency>
102     </dependencies>
103 </project>