Merge "Remove explicit version declaration"
[netconf.git] / netconf / aaa-authn-odl-plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 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"
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     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>2.0.4</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>aaa-authn-odl-plugin</artifactId>
21     <version>1.3.0-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.netconf</groupId>
28                 <artifactId>netconf-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.aaa</groupId>
35                 <artifactId>aaa-artifacts</artifactId>
36                 <version>0.6.0-SNAPSHOT</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.opendaylight.aaa</groupId>
46             <artifactId>aaa-authn-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.slf4j</groupId>
50             <artifactId>slf4j-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.netconf</groupId>
54             <artifactId>netconf-auth</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.osgi</groupId>
58             <artifactId>org.osgi.core</artifactId>
59             <scope>provided</scope>
60         </dependency>
61
62         <!-- Testing Dependencies -->
63         <dependency>
64             <groupId>org.slf4j</groupId>
65             <artifactId>slf4j-simple</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.mockito</groupId>
70             <artifactId>mockito-core</artifactId>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-checkstyle-plugin</artifactId>
80                 <configuration>
81                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
82                 </configuration>
83             </plugin>
84         </plugins>
85     </build>
86
87 </project>