Add missing <scope>test to aclservice/impl/pom.xml
[netvirt.git] / vpnservice / aclservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.netvirt</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.4.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-parent</relativePath>
18   </parent>
19
20   <artifactId>aclservice-impl</artifactId>
21   <name>ODL :: netvirt :: ${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>aclservice-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-binding-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-broker-impl</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.genius</groupId>
40       <artifactId>mdsalutil-api</artifactId>
41       <version>${genius.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.genius</groupId>
45       <artifactId>interfacemanager-api</artifactId>
46       <version>${genius.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>utils.config</artifactId>
51       <version>${vpns.ovsdb.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.netvirt</groupId>
55       <artifactId>elanmanager-api</artifactId>
56       <version>${vpnservices.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.genius</groupId>
60       <artifactId>idmanager-api</artifactId>
61       <version>${genius.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>inject</artifactId>
66       <version>${infrautils.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>com.googlecode.java-ipv6</groupId>
70       <artifactId>java-ipv6</artifactId>
71       <version>0.16</version>
72     </dependency>
73
74     <!-- Dependencies used only by code under src/test (<scope>test) -->
75     <dependency>
76       <groupId>org.opendaylight.infrautils</groupId>
77       <artifactId>inject.guice.testutils</artifactId>
78       <version>${infrautils.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.genius</groupId>
83       <artifactId>mdsalutil-api</artifactId>
84       <version>${genius.version}</version>
85       <type>test-jar</type>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.genius</groupId>
90       <artifactId>mdsalutil-testutils</artifactId>
91       <version>${genius.version}</version>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>testutils</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>sal-binding-broker-impl</artifactId>
102       <type>test-jar</type>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.mdsal</groupId>
107       <artifactId>mdsal-binding-test-utils</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.immutables</groupId>
112       <artifactId>value</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>com.google.truth</groupId>
117       <artifactId>truth</artifactId>
118       <scope>test</scope>
119     </dependency>
120   </dependencies>
121
122   <build>
123     <plugins>
124       <plugin>
125         <groupId>org.eclipse.xtend</groupId>
126         <artifactId>xtend-maven-plugin</artifactId>
127       </plugin>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-checkstyle-plugin</artifactId>
131         <configuration>
132           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
133         </configuration>
134       </plugin>
135       <plugin>
136         <groupId>org.codehaus.mojo</groupId>
137         <artifactId>build-helper-maven-plugin</artifactId>
138         <executions>
139           <execution>
140             <id>attach-artifacts</id>
141             <goals>
142               <goal>attach-artifact</goal>
143             </goals>
144             <phase>package</phase>
145             <configuration>
146               <artifacts>
147                 <artifact>
148                   <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml</file>
149                   <type>xml</type>
150                   <classifier>config</classifier>
151                 </artifact>
152               </artifacts>
153             </configuration>
154           </execution>
155         </executions>
156       </plugin>
157       <plugin>
158         <groupId>org.apache.aries.blueprint</groupId>
159         <artifactId>blueprint-maven-plugin</artifactId>
160       </plugin>
161     </plugins>
162   </build>
163
164   <!--
165       Maven Site Configuration
166
167       The following configuration is necessary for maven-site-plugin to
168       correctly identify the correct deployment path for OpenDaylight Maven
169       sites.
170   -->
171   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
172
173   <distributionManagement>
174     <site>
175       <id>opendaylight-site</id>
176       <url>${nexus.site.url}/${project.artifactId}/</url>
177     </site>
178   </distributionManagement>
179 </project>