Merge "Add node and dpid information to L3 Forwarding API"
[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.2.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.0.1-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <properties>
19         <ietf.model.version>2010.09.24.4-SNAPSHOT</ietf.model.version>
20         <jmxGeneratorPath>target/generated-sources/config</jmxGeneratorPath>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>ch.qos.logback</groupId>
26             <artifactId>logback-classic</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>ch.qos.logback</groupId>
30             <artifactId>logback-core</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-binding-config</artifactId>
35             <version>${mdsal.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.sfc</groupId>
39             <artifactId>sfc-model</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-all</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <!--<dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-simple</artifactId>
54         </dependency>-->
55         <dependency>
56             <groupId>org.opendaylight.yangtools.model</groupId>
57             <artifactId>ietf-inet-types</artifactId>
58             <version>${ietf.model.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools.model</groupId>
62             <artifactId>ietf-yang-types</artifactId>
63             <version>${ietf.model.version}</version>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.felix</groupId>
71                 <artifactId>maven-bundle-plugin</artifactId>
72                 <version>${bundle.plugin.version}</version>
73                 <extensions>true</extensions>
74                 <configuration>
75                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
76                 </configuration>
77             </plugin>
78             <plugin>
79                 <groupId>org.opendaylight.yangtools</groupId>
80                 <artifactId>yang-maven-plugin</artifactId>
81                 <executions>
82                     <execution>
83                         <id>config</id>
84                         <goals>
85                             <goal>generate-sources</goal>
86                         </goals>
87                         <configuration>
88                             <codeGenerators>
89                                 <generator>
90                                     <codeGeneratorClass>
91                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
92                                     </codeGeneratorClass>
93                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
94                                     <additionalConfiguration>
95                                         <namespaceToPackage1>
96                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
97                                         </namespaceToPackage1>
98                                     </additionalConfiguration>
99                                 </generator>
100                             </codeGenerators>
101                             <inspectDependencies>true</inspectDependencies>
102                         </configuration>
103                     </execution>
104                 </executions>
105                 <dependencies>
106                     <dependency>
107                         <groupId>org.opendaylight.controller</groupId>
108                         <artifactId>yang-jmx-generator-plugin</artifactId>
109                         <version>${controller.config.version}</version>
110                     </dependency>
111                     <dependency>
112                         <groupId>org.opendaylight.yangtools</groupId>
113                         <artifactId>maven-sal-api-gen-plugin</artifactId>
114                         <version>${yangtools.version}</version>
115                     </dependency>
116                 </dependencies>
117             </plugin>
118             <plugin>
119                 <groupId>org.codehaus.mojo</groupId>
120                 <artifactId>build-helper-maven-plugin</artifactId>
121             </plugin>
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-checkstyle-plugin</artifactId>
125             </plugin>
126         </plugins>
127     </build>
128
129     <scm>
130         <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
131         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
132         <tag>HEAD</tag>
133         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
134     </scm>
135 </project>