Bump versions by x.(y+1).z for next dev cycle
[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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>odlparent</artifactId>
8     <version>1.9.0-SNAPSHOT</version>
9     <relativePath />
10   </parent>
11
12   <groupId>org.opendaylight.aaa</groupId>
13   <artifactId>aaa-parent</artifactId>
14   <version>0.6.0-SNAPSHOT</version>
15   <name>ODL :: aaa :: ${project.artifactId}</name>
16   <packaging>pom</packaging>
17
18   <prerequisites>
19     <maven>3.0.4</maven>
20   </prerequisites>
21
22   <properties>
23     <!-- Karaf -->
24     <karaf.branding.version>1.5.0-SNAPSHOT</karaf.branding.version>
25     <karaf.resources.version>1.9.0-SNAPSHOT</karaf.resources.version>
26
27     <!-- Local project version, needed for import -->
28     <aaa.version>${project.version}</aaa.version>
29     <parent-path>${basedir}</parent-path>
30
31     <!-- AuthZ -->
32     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
33     <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
34     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
35     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
36     <restconf.version>1.6.0-SNAPSHOT</restconf.version>
37     <config.version>0.7.0-SNAPSHOT</config.version>
38     <config.restconf.configfile>09-rest-connector.xml</config.restconf.configfile>
39     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
40
41     <!-- AuthN -->
42     <glassfish.json.version>1.0.4</glassfish.json.version>
43     <ehcache.version>2.8.3</ehcache.version>
44     <jta.version>1.1.1</jta.version>
45     <oltu.version>1.0.0</oltu.version>
46
47     <config.authn.store.configfile>08-authn-config.xml</config.authn.store.configfile>
48
49     <!-- Keystone plugin -->
50     <httpclient.version>4.4</httpclient.version>
51
52     <!-- Test -->
53     <javax.inject.version>1</javax.inject.version>
54     <servlet.tester.version>7.0.0.pre5</servlet.tester.version>
55     <features.test.version>1.9.0-SNAPSHOT</features.test.version>
56   </properties>
57
58   <dependencyManagement>
59     <dependencies>
60       <!-- ODL -->
61       <dependency>
62         <groupId>org.opendaylight.aaa</groupId>
63         <artifactId>aaa-artifacts</artifactId>
64         <version>${aaa.version}</version>
65         <type>pom</type>
66         <scope>import</scope>
67       </dependency>
68       <dependency>
69         <groupId>org.opendaylight.yangtools</groupId>
70         <artifactId>yangtools-artifacts</artifactId>
71         <version>${yangtools.version}</version>
72         <type>pom</type>
73         <scope>import</scope>
74       </dependency>
75       <dependency>
76         <groupId>org.opendaylight.mdsal</groupId>
77         <artifactId>mdsal-artifacts</artifactId>
78         <version>${mdsal.version}</version>
79         <scope>import</scope>
80         <type>pom</type>
81       </dependency>
82       <dependency>
83         <groupId>org.opendaylight.mdsal.model</groupId>
84         <artifactId>mdsal-model-artifacts</artifactId>
85         <version>${mdsal.model.version}</version>
86         <scope>import</scope>
87         <type>pom</type>
88       </dependency>
89       <dependency>
90         <groupId>org.opendaylight.controller</groupId>
91         <artifactId>mdsal-artifacts</artifactId>
92         <version>${controller.mdsal.version}</version>
93         <scope>import</scope>
94         <type>pom</type>
95       </dependency>
96       <dependency>
97         <groupId>org.opendaylight.controller</groupId>
98         <artifactId>config-artifacts</artifactId>
99         <version>${config.version}</version>
100         <type>pom</type>
101         <scope>import</scope>
102       </dependency>
103
104       <!-- Third-party -->
105       <dependency>
106         <groupId>org.glassfish</groupId>
107         <artifactId>javax.json</artifactId>
108         <version>${glassfish.json.version}</version>
109       </dependency>
110       <dependency>
111         <groupId>org.apache.felix</groupId>
112         <artifactId>org.apache.felix.metatype</artifactId>
113       </dependency>
114       <dependency>
115         <groupId>net.sf.ehcache</groupId>
116         <artifactId>ehcache</artifactId>
117         <version>${ehcache.version}</version>
118       </dependency>
119       <dependency>
120         <groupId>org.apache.oltu.oauth2</groupId>
121         <artifactId>org.apache.oltu.oauth2.common</artifactId>
122         <version>${oltu.version}</version>
123       </dependency>
124       <dependency>
125         <groupId>org.apache.oltu.oauth2</groupId>
126         <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
127         <version>${oltu.version}</version>
128       </dependency>
129       <dependency>
130         <groupId>org.apache.oltu.oauth2</groupId>
131         <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
132         <version>${oltu.version}</version>
133       </dependency>
134
135       <!-- Test stuff -->
136       <dependency>
137         <groupId>org.opendaylight.odlparent</groupId>
138         <artifactId>features-test</artifactId>
139         <version>${features.test.version}</version>
140         <scope>test</scope>
141       </dependency>
142       <dependency>
143         <groupId>javax.inject</groupId>
144         <artifactId>javax.inject</artifactId>
145         <version>${javax.inject.version}</version>
146         <scope>test</scope>
147       </dependency>
148       <dependency>
149         <groupId>org.mortbay.jetty</groupId>
150         <artifactId>jetty-servlet-tester</artifactId>
151         <version>${servlet.tester.version}</version>
152         <scope>test</scope>
153       </dependency>
154     </dependencies>
155   </dependencyManagement>
156
157   <build>
158     <plugins>
159       <plugin>
160         <groupId>org.jacoco</groupId>
161         <artifactId>jacoco-maven-plugin</artifactId>
162         <configuration>
163           <includes>
164             <include>org.opendaylight.aaa.*</include>
165           </includes>
166         </configuration>
167         <executions>
168           <execution>
169             <id>pre-test</id>
170             <goals>
171               <goal>prepare-agent</goal>
172             </goals>
173           </execution>
174           <execution>
175             <id>post-test</id>
176             <goals>
177               <goal>report</goal>
178             </goals>
179             <phase>test</phase>
180           </execution>
181         </executions>
182       </plugin>
183     </plugins>
184   </build>
185
186   <url>https://wiki.opendaylight.org/view/AAA:Main</url>
187   <scm>
188     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
189     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
190     <tag>HEAD</tag>
191   </scm>
192
193   <reporting>
194     <plugins>
195       <plugin>
196         <groupId>org.codehaus.mojo</groupId>
197         <artifactId>findbugs-maven-plugin</artifactId>
198         <version>${findbugs.maven.plugin.version}</version>
199         <configuration>
200           <effort>Max</effort>
201           <threshold>Low</threshold>
202           <goal>site</goal>
203         </configuration>
204       </plugin>
205       <plugin>
206         <groupId>org.codehaus.mojo</groupId>
207         <artifactId>jdepend-maven-plugin</artifactId>
208         <version>${jdepend.maven.plugin.version}</version>
209       </plugin>
210     </plugins>
211   </reporting>
212 </project>