Remove CSS artifact remnants
[ovsdb.git] / southbound / southbound-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>it</artifactId>
14     <version>1.6.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-it</artifactId>
20   <version>1.6.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25
26   <properties>
27     <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>${project.groupId}</groupId>
34         <artifactId>southbound-artifacts</artifactId>
35         <version>${project.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39       <dependency>
40         <groupId>org.opendaylight.controller</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>${controller.mdsal.version}</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48   <dependencies>
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-common-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>southbound-features</artifactId>
60       <classifier>features</classifier>
61       <type>xml</type>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>utils.southbound-utils</artifactId>
66       <version>${project.version}</version>
67     </dependency>
68     <!-- Dependencies for pax exam karaf container -->
69     <dependency>
70       <groupId>org.ops4j.pax.exam</groupId>
71       <artifactId>pax-exam-container-karaf</artifactId>
72       <scope>compile</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.ops4j.pax.exam</groupId>
76       <artifactId>pax-exam-junit4</artifactId>
77       <scope>compile</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.ops4j.pax.exam</groupId>
81       <artifactId>pax-exam</artifactId>
82       <scope>compile</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.ops4j.pax.url</groupId>
86       <artifactId>pax-url-aether</artifactId>
87       <scope>compile</scope>
88     </dependency>
89     <dependency>
90       <groupId>javax.inject</groupId>
91       <artifactId>javax.inject</artifactId>
92       <version>1</version>
93       <scope>compile</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.apache.karaf.features</groupId>
97       <artifactId>org.apache.karaf.features.core</artifactId>
98       <version>${karaf.version}</version>
99       <scope>compile</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.osgi</groupId>
103       <artifactId>org.osgi.core</artifactId>
104       <scope>compile</scope>
105     </dependency>
106     <dependency>
107       <groupId>junit</groupId>
108       <artifactId>junit</artifactId>
109       <scope>compile</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.slf4j</groupId>
113       <artifactId>slf4j-simple</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.codehaus.sonar-plugins.java</groupId>
118       <artifactId>sonar-jacoco-listeners</artifactId>
119       <scope>test</scope>
120     </dependency>
121     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
122     <dependency>
123       <groupId>org.opendaylight.ovsdb</groupId>
124       <artifactId>southbound-karaf</artifactId>
125       <version>${project.version}</version>
126       <type>tar.gz</type>
127       <scope>test</scope>
128     </dependency>
129   </dependencies>
130   <build>
131     <plugins>
132       <plugin>
133         <groupId>org.jacoco</groupId>
134         <artifactId>jacoco-maven-plugin</artifactId>
135       </plugin>
136       <plugin>
137         <groupId>org.apache.maven.plugins</groupId>
138         <artifactId>maven-failsafe-plugin</artifactId>
139       </plugin>
140       <!-- Needed if you use versionAsInProject() -->
141       <plugin>
142         <groupId>org.apache.servicemix.tooling</groupId>
143         <artifactId>depends-maven-plugin</artifactId>
144         <version>1.2</version>
145         <executions>
146           <execution>
147             <id>generate-depends-file</id>
148             <goals>
149               <goal>generate-depends-file</goal>
150             </goals>
151           </execution>
152         </executions>
153       </plugin>
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-checkstyle-plugin</artifactId>
157         <configuration>
158           <failsOnError>true</failsOnError>
159           <includeTestSourceDirectory>true</includeTestSourceDirectory>
160         </configuration>
161       </plugin>
162     </plugins>
163   </build>
164
165   <!--
166       Maven Site Configuration
167
168       The following configuration is necessary for maven-site-plugin to
169       correctly identify the correct deployment path for OpenDaylight Maven
170       sites.
171   -->
172   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
173
174   <distributionManagement>
175     <site>
176       <id>opendaylight-site</id>
177       <url>${nexus.site.url}/${project.artifactId}/</url>
178     </site>
179   </distributionManagement>
180 </project>