Version bump for master after cutting of stable/lithium branch
[openflowplugin.git] / drop-test-karaf / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.2.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10     <artifactId>drop-test-karaf</artifactId>
11     <packaging>bundle</packaging>
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
15     </scm>
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.openflowplugin</groupId>
19             <artifactId>test-common</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>com.google.guava</groupId>
23             <artifactId>guava</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-binding-broker-impl</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin.model</groupId>
35             <artifactId>model-flow-service</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-flow-base</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller.model</groupId>
43             <artifactId>model-inventory</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.apache.karaf.shell</groupId>
47             <artifactId>org.apache.karaf.shell.console</artifactId>
48             <version>${karaf.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.core</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>commons-lang</groupId>
56             <artifactId>commons-lang</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>config-api</artifactId>
61         </dependency>
62
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.apache.felix</groupId>
69                 <artifactId>maven-bundle-plugin</artifactId>
70             </plugin>
71             <plugin>
72                 <groupId>org.opendaylight.yangtools</groupId>
73                 <artifactId>yang-maven-plugin</artifactId>
74                 <executions>
75                     <execution>
76                         <goals>
77                             <goal>generate-sources</goal>
78                         </goals>
79                         <configuration>
80                             <codeGenerators>
81                                 <generator>
82                                     <codeGeneratorClass>
83                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
84                                     </codeGeneratorClass>
85                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
86                                     <additionalConfiguration>
87                                         <namespaceToPackage1>
88                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
89                                         </namespaceToPackage1>
90                                     </additionalConfiguration>
91                                 </generator>
92                                 <generator>
93                                     <codeGeneratorClass>
94                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
95                                     </codeGeneratorClass>
96                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
97                                 </generator>
98                                 <generator>
99                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
100                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
101                                 </generator>
102                             </codeGenerators>
103                             <inspectDependencies>true</inspectDependencies>
104                         </configuration>
105                     </execution>
106                 </executions>
107                 <dependencies>
108                     <dependency>
109                         <groupId>org.opendaylight.controller</groupId>
110                         <artifactId>yang-jmx-generator-plugin</artifactId>
111                         <version>${config.version}</version>
112                     </dependency>
113                     <dependency>
114                         <groupId>org.opendaylight.yangtools</groupId>
115                         <artifactId>maven-sal-api-gen-plugin</artifactId>
116                         <version>${yangtools.version}</version>
117                         <type>jar</type>
118                     </dependency>
119                 </dependencies>
120             </plugin>
121             <plugin>
122                 <groupId>org.codehaus.mojo</groupId>
123                 <artifactId>build-helper-maven-plugin</artifactId>
124                 <executions>
125                     <execution>
126                         <id>attach-artifacts</id>
127                         <goals>
128                             <goal>attach-artifact</goal>
129                         </goals>
130                         <phase>package</phase>
131                         <configuration>
132                             <artifacts>
133                                 <artifact>
134                                     <file>${project.build.directory}/classes/initial/69-drop-test.xml</file>
135                                     <type>xml</type>
136                                     <classifier>config</classifier>
137                                 </artifact>
138                             </artifacts>
139                         </configuration>
140                     </execution>
141                 </executions>
142             </plugin>
143         </plugins>
144     </build>
145 </project>