Integrate controller-2.0.1
[aaa.git] / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>6.0.1</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.aaa</groupId>
12   <artifactId>aaa-parent</artifactId>
13   <version>0.12.0-SNAPSHOT</version>
14   <name>ODL :: aaa :: ${project.artifactId}</name>
15   <packaging>pom</packaging>
16
17
18   <dependencyManagement>
19     <dependencies>
20       <!-- ODL -->
21       <dependency>
22         <groupId>org.opendaylight.aaa</groupId>
23         <artifactId>aaa-artifacts</artifactId>
24         <version>${project.version}</version>
25         <type>pom</type>
26         <scope>import</scope>
27       </dependency>
28       <dependency>
29         <groupId>org.opendaylight.controller</groupId>
30         <artifactId>controller-artifacts</artifactId>
31         <version>2.0.1</version>
32         <scope>import</scope>
33         <type>pom</type>
34       </dependency>
35
36       <!-- Third-party -->
37       <dependency>
38         <groupId>net.sf.ehcache</groupId>
39         <artifactId>ehcache</artifactId>
40         <version>2.10.6</version>
41       </dependency>
42       <dependency>
43         <groupId>org.glassfish</groupId>
44         <artifactId>javax.json</artifactId>
45         <version>1.0.4</version>
46       </dependency>
47       <dependency>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>org.apache.felix.metatype</artifactId>
50       </dependency>
51       <dependency>
52         <groupId>org.apache.shiro</groupId>
53         <artifactId>shiro-web</artifactId>
54         <version>1.3.2</version>
55       </dependency>
56       <dependency>
57         <groupId>org.apache.shiro</groupId>
58         <artifactId>shiro-core</artifactId>
59         <version>1.3.2</version>
60       </dependency>
61     </dependencies>
62   </dependencyManagement>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.jacoco</groupId>
68         <artifactId>jacoco-maven-plugin</artifactId>
69         <configuration>
70           <includes>
71             <include>org.opendaylight.aaa.*</include>
72           </includes>
73         </configuration>
74         <executions>
75           <execution>
76             <id>pre-test</id>
77             <goals>
78               <goal>prepare-agent</goal>
79             </goals>
80           </execution>
81           <execution>
82             <id>post-test</id>
83             <goals>
84               <goal>report</goal>
85             </goals>
86             <phase>test</phase>
87           </execution>
88         </executions>
89       </plugin>
90     </plugins>
91   </build>
92
93   <url>https://wiki.opendaylight.org/view/AAA:Main</url>
94   <scm>
95     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
96     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
97     <tag>HEAD</tag>
98   </scm>
99
100   <reporting>
101     <plugins>
102       <plugin>
103         <groupId>org.codehaus.mojo</groupId>
104         <artifactId>jdepend-maven-plugin</artifactId>
105       </plugin>
106     </plugins>
107   </reporting>
108 </project>