64a64c4cd833e786d054cda8879cdd4de4f4500e
[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.3</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.aaa</groupId>
12   <artifactId>aaa-parent</artifactId>
13   <version>0.11.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-SNAPSHOT</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
52       <!-- Test stuff -->
53       <dependency>
54         <groupId>org.mortbay.jetty</groupId>
55         <artifactId>jetty-servlet-tester</artifactId>
56         <version>7.0.0.pre5</version>
57         <scope>test</scope>
58       </dependency>
59     </dependencies>
60   </dependencyManagement>
61
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-checkstyle-plugin</artifactId>
67         <configuration>
68            <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>com.github.spotbugs</groupId>
73         <artifactId>spotbugs-maven-plugin</artifactId>
74         <configuration>
75           <failOnError>true</failOnError>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.jacoco</groupId>
80         <artifactId>jacoco-maven-plugin</artifactId>
81         <configuration>
82           <includes>
83             <include>org.opendaylight.aaa.*</include>
84           </includes>
85         </configuration>
86         <executions>
87           <execution>
88             <id>pre-test</id>
89             <goals>
90               <goal>prepare-agent</goal>
91             </goals>
92           </execution>
93           <execution>
94             <id>post-test</id>
95             <goals>
96               <goal>report</goal>
97             </goals>
98             <phase>test</phase>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104
105   <url>https://wiki.opendaylight.org/view/AAA:Main</url>
106   <scm>
107     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
108     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
109     <tag>HEAD</tag>
110   </scm>
111
112   <reporting>
113     <plugins>
114       <plugin>
115         <groupId>org.codehaus.mojo</groupId>
116         <artifactId>jdepend-maven-plugin</artifactId>
117       </plugin>
118     </plugins>
119   </reporting>
120 </project>