Incrementing versions by 0.1.0 for post-Helium master branch
[netvirt.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         <ietf.model.version>2010.09.24.7-SNAPSHOT</ietf.model.version>
21         <ietf.yang.types.version>2013.07.15.7-SNAPSHOT</ietf.yang.types.version>
22     </properties>
23
24     <dependencies>
25         <dependency>
26             <groupId>ch.qos.logback</groupId>
27             <artifactId>logback-classic</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>ch.qos.logback</groupId>
31             <artifactId>logback-core</artifactId>
32         </dependency>
33         <!--<dependency>
34             <groupId>com.google.guava</groupId>
35             <artifactId>guava</artifactId>
36         </dependency>-->
37         <dependency>
38             <groupId>junit</groupId>
39             <artifactId>junit</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.mockito</groupId>
44             <artifactId>mockito-all</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-binding-config</artifactId>
50             <version>${mdsal.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-common-api</artifactId>
55             <version>${mdsal.version}</version>
56         </dependency>
57         <!--<dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-core-api</artifactId>
60             <version>${mdsal.version}</version>
61         </dependency>-->
62         <dependency>
63             <groupId>org.opendaylight.controller.model</groupId>
64             <artifactId>model-flow-base</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller.model</groupId>
68             <artifactId>model-flow-service</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller.model</groupId>
72             <artifactId>model-inventory</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.ovsdb</groupId>
76             <artifactId>plugin</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.ovsdb</groupId>
80             <artifactId>utils.mdsal-openflow</artifactId>
81             <version>1.1.0-SNAPSHOT</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.sfc</groupId>
85             <artifactId>sfc-model</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools.model</groupId>
89             <artifactId>ietf-inet-types</artifactId>
90             <version>${ietf.model.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.yangtools.model</groupId>
94             <artifactId>ietf-yang-types</artifactId>
95             <version>${ietf.model.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.yangtools.model</groupId>
99             <artifactId>ietf-yang-types-20130715</artifactId>
100             <version>${ietf.yang.types.version}</version>
101         </dependency>
102     </dependencies>
103
104     <build>
105         <plugins>
106             <plugin>
107                 <groupId>org.apache.felix</groupId>
108                 <artifactId>maven-bundle-plugin</artifactId>
109                 <version>${bundle.plugin.version}</version>
110                 <extensions>true</extensions>
111                 <configuration>
112                     <instructions>
113                         <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
114                         <Embed-Transitive>true</Embed-Transitive>
115                         <Include-Resource>
116                             /OSGI-OPT/ovs-sfc/53-ovssfc-provider.xml=${project.basedir}/src/main/resources/initial/53-ovssfc-provider.xml,{maven-resources}
117                         </Include-Resource>
118                     </instructions>
119                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
120                 </configuration>
121             </plugin>
122             <plugin>
123                 <groupId>org.opendaylight.yangtools</groupId>
124                 <artifactId>yang-maven-plugin</artifactId>
125                 <executions>
126                     <execution>
127                         <id>config</id>
128                         <goals>
129                             <goal>generate-sources</goal>
130                         </goals>
131                         <configuration>
132                             <codeGenerators>
133                                 <generator>
134                                     <codeGeneratorClass>
135                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
136                                     </codeGeneratorClass>
137                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
138                                     <additionalConfiguration>
139                                         <namespaceToPackage1>
140                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
141                                         </namespaceToPackage1>
142                                     </additionalConfiguration>
143                                 </generator>
144                             </codeGenerators>
145                             <inspectDependencies>true</inspectDependencies>
146                         </configuration>
147                     </execution>
148                 </executions>
149                 <dependencies>
150                     <dependency>
151                         <groupId>org.opendaylight.controller</groupId>
152                         <artifactId>yang-jmx-generator-plugin</artifactId>
153                         <version>${controller.config.version}</version>
154                     </dependency>
155                     <dependency>
156                         <groupId>org.opendaylight.yangtools</groupId>
157                         <artifactId>maven-sal-api-gen-plugin</artifactId>
158                         <version>${yangtools.version}</version>
159                     </dependency>
160                 </dependencies>
161             </plugin>
162             <plugin>
163                 <groupId>org.codehaus.mojo</groupId>
164                 <artifactId>build-helper-maven-plugin</artifactId>
165             </plugin>
166             <plugin>
167                 <groupId>org.apache.maven.plugins</groupId>
168                 <artifactId>maven-checkstyle-plugin</artifactId>
169             </plugin>
170         </plugins>
171     </build>
172
173     <scm>
174         <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
175         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
176         <tag>HEAD</tag>
177         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
178     </scm>
179 </project>