Merge "REVERT-ME: neuter southbound module."
[ovsdb.git] / ovs-sfc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.ovsdb</groupId>
9         <artifactId>commons</artifactId>
10         <version>1.3.0-SNAPSHOT</version>
11         <relativePath>../commons/parent</relativePath>
12     </parent>
13     <artifactId>ovssfc</artifactId>
14     <name>OpenDaylight OVS Service Function Chaining</name>
15     <version>0.1.0-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <properties>
19         <jmxGeneratorPath>target/generated-sources/config</jmxGeneratorPath>
20     </properties>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.osgi</groupId>
25             <artifactId>org.osgi.core</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>junit</groupId>
33             <artifactId>junit</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.mockito</groupId>
38             <artifactId>mockito-all</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>config-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>sal</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>sal-binding-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-config</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-common-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller.model</groupId>
63             <artifactId>model-flow-base</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller.model</groupId>
67             <artifactId>model-flow-service</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller.model</groupId>
71             <artifactId>model-inventory</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.ovsdb</groupId>
75             <artifactId>library</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.ovsdb</groupId>
79             <artifactId>plugin</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.ovsdb</groupId>
83             <artifactId>schema.openvswitch</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.ovsdb</groupId>
87             <artifactId>utils.mdsal-openflow</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.sfc</groupId>
91             <artifactId>sfc-model</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>concepts</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.yangtools</groupId>
99             <artifactId>yang-binding</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>yang-common</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools.model</groupId>
107             <artifactId>ietf-inet-types</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.yangtools.model</groupId>
111             <artifactId>opendaylight-l2-types</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.slf4j</groupId>
115             <artifactId>slf4j-api</artifactId>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.felix</groupId>
123                 <artifactId>maven-bundle-plugin</artifactId>
124                 <version>${bundle.plugin.version}</version>
125                 <extensions>true</extensions>
126                 <configuration>
127                     <instructions>
128                         <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
129                         <Embed-Transitive>true</Embed-Transitive>
130                         <Include-Resource>
131                             /OSGI-OPT/ovs-sfc/53-ovssfc-provider.xml=${project.basedir}/src/main/resources/initial/53-ovssfc-provider.xml,{maven-resources}
132                         </Include-Resource>
133                     </instructions>
134                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
135                 </configuration>
136             </plugin>
137             <plugin>
138                 <groupId>org.opendaylight.yangtools</groupId>
139                 <artifactId>yang-maven-plugin</artifactId>
140                 <executions>
141                     <execution>
142                         <id>config</id>
143                         <goals>
144                             <goal>generate-sources</goal>
145                         </goals>
146                         <configuration>
147                             <codeGenerators>
148                                 <generator>
149                                     <codeGeneratorClass>
150                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
151                                     </codeGeneratorClass>
152                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
153                                     <additionalConfiguration>
154                                         <namespaceToPackage1>
155                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
156                                         </namespaceToPackage1>
157                                     </additionalConfiguration>
158                                 </generator>
159                             </codeGenerators>
160                             <inspectDependencies>true</inspectDependencies>
161                         </configuration>
162                     </execution>
163                 </executions>
164                 <dependencies>
165                     <dependency>
166                         <groupId>org.opendaylight.controller</groupId>
167                         <artifactId>yang-jmx-generator-plugin</artifactId>
168                         <version>${controller.config.version}</version>
169                     </dependency>
170                     <dependency>
171                         <groupId>org.opendaylight.yangtools</groupId>
172                         <artifactId>maven-sal-api-gen-plugin</artifactId>
173                         <version>${yangtools.version}</version>
174                     </dependency>
175                 </dependencies>
176             </plugin>
177             <plugin>
178                 <groupId>org.codehaus.mojo</groupId>
179                 <artifactId>build-helper-maven-plugin</artifactId>
180             </plugin>
181             <plugin>
182                 <groupId>org.apache.maven.plugins</groupId>
183                 <artifactId>maven-checkstyle-plugin</artifactId>
184             </plugin>
185             <plugin>
186                 <groupId>org.jacoco</groupId>
187                 <artifactId>jacoco-maven-plugin</artifactId>
188             </plugin>
189         </plugins>
190     </build>
191
192     <scm>
193         <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
194         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
195         <tag>HEAD</tag>
196         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
197     </scm>
198 </project>