Merge "AAA-194 Fix for Pattern Matching in Shiro"
[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>5.0.9</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>mdsal-artifacts</artifactId>
31         <version>1.11.0</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     </dependencies>
52   </dependencyManagement>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.jacoco</groupId>
58         <artifactId>jacoco-maven-plugin</artifactId>
59         <configuration>
60           <includes>
61             <include>org.opendaylight.aaa.*</include>
62           </includes>
63         </configuration>
64         <executions>
65           <execution>
66             <id>pre-test</id>
67             <goals>
68               <goal>prepare-agent</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>post-test</id>
73             <goals>
74               <goal>report</goal>
75             </goals>
76             <phase>test</phase>
77           </execution>
78         </executions>
79       </plugin>
80     </plugins>
81   </build>
82
83   <url>https://wiki.opendaylight.org/view/AAA:Main</url>
84   <scm>
85     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
86     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
87     <tag>HEAD</tag>
88   </scm>
89
90   <reporting>
91     <plugins>
92       <plugin>
93         <groupId>org.codehaus.mojo</groupId>
94         <artifactId>jdepend-maven-plugin</artifactId>
95       </plugin>
96     </plugins>
97   </reporting>
98 </project>