Remove version overrides
[l2switch.git] / hosttracker / implementation / 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.l2switch</groupId>
6         <artifactId>l2switch-parent</artifactId>
7         <version>0.2.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10     <name>hosttracker-impl</name>
11     <groupId>org.opendaylight.l2switch.hosttracker</groupId>
12     <artifactId>hosttracker-impl</artifactId>
13     <packaging>bundle</packaging>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <extensions>true</extensions>
20                 <configuration>
21                     <instructions>
22                         <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.l2switch.host.tracker.impl.rev140528</Export-Package>
23                         <Import-Package>*</Import-Package>
24                     </instructions>
25                 </configuration>
26             </plugin>
27             <plugin>
28                 <groupId>org.opendaylight.yangtools</groupId>
29                 <artifactId>yang-maven-plugin</artifactId>
30                 <version>${yangtools.version}</version>
31                 <executions>
32                     <execution>
33                         <goals>
34                             <goal>generate-sources</goal>
35                         </goals>
36                         <configuration>
37                             <codeGenerators>
38                                 <generator>
39                                     <codeGeneratorClass>
40                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
41                                     </codeGeneratorClass>
42                                     <outputBaseDir>${configCodeGeneratorPath}</outputBaseDir>
43                                     <additionalConfiguration>
44                                         <namespaceToPackage1>
45                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
46                                         </namespaceToPackage1>
47                                     </additionalConfiguration>
48                                 </generator>
49                                 <generator>
50                                     <codeGeneratorClass>
51                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
52                                     </codeGeneratorClass>
53                                     <outputBaseDir>${codeGeneratorPath}</outputBaseDir>
54                                 </generator>
55                             </codeGenerators>
56                             <inspectDependencies>true</inspectDependencies>
57                         </configuration>
58                     </execution>
59                 </executions>
60                 <dependencies>
61                     <dependency>
62                         <groupId>org.opendaylight.controller</groupId>
63                         <artifactId>yang-jmx-generator-plugin</artifactId>
64                         <version>0.3.0-SNAPSHOT</version>
65                     </dependency>
66                     <dependency>
67                         <groupId>org.opendaylight.yangtools</groupId>
68                         <artifactId>maven-sal-api-gen-plugin</artifactId>
69                         <version>${yangtools.version}</version>
70                         <type>jar</type>
71                     </dependency>
72                 </dependencies>
73             </plugin>
74         </plugins>
75     </build>
76     <dependencies>
77         <dependency>
78             <groupId>org.slf4j</groupId>
79             <artifactId>log4j-over-slf4j</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.osgi</groupId>
83             <artifactId>org.osgi.core</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-common-util</artifactId>
92             <version>${mdsal.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>yang-common</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>yang-binding</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller.model</groupId>
104             <artifactId>model-inventory</artifactId>
105             <type>jar</type>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.l2switch.addresstracker</groupId>
109             <artifactId>addresstracker-model</artifactId>
110             <version>${project.version}</version>
111             <type>jar</type>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.l2switch.hosttracker</groupId>
115             <artifactId>hosttracker-model</artifactId>
116             <version>${project.version}</version>
117             <type>jar</type>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools.model</groupId>
121             <artifactId>ietf-topology</artifactId>
122             <version>2013.10.21.7-SNAPSHOT</version>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>config-api</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.controller</groupId>
130             <artifactId>sal-binding-config</artifactId>
131         </dependency>
132     </dependencies>
133 </project>