Bump versions by x.(y+1).z for next dev cycle
[aaa.git] / aaa-authn-sssd / 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.aaa</groupId>
7     <artifactId>aaa-parent</artifactId>
8     <version>0.6.0-SNAPSHOT</version>
9     <relativePath>../parent</relativePath>
10   </parent>
11
12   <artifactId>aaa-authn-sssd</artifactId>
13   <name>ODL :: aaa :: ${project.artifactId}</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.aaa</groupId>
19       <artifactId>aaa-authn</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.aaa</groupId>
23       <artifactId>aaa-authn-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.glassfish</groupId>
27       <artifactId>javax.json</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.aaa</groupId>
31       <artifactId>aaa-authn-idpmapping</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.sun.jersey</groupId>
35       <artifactId>jersey-server</artifactId>
36       <scope>provided</scope>
37     </dependency>
38     <dependency>
39       <groupId>javax.servlet</groupId>
40       <artifactId>javax.servlet-api</artifactId>
41       <scope>provided</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.osgi</groupId>
45       <artifactId>org.osgi.core</artifactId>
46       <scope>provided</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.felix</groupId>
50       <artifactId>org.apache.felix.dependencymanager</artifactId>
51       <scope>provided</scope>
52     </dependency>
53     <!-- Testing Dependencies -->
54     <dependency>
55       <groupId>com.sun.jersey.jersey-test-framework</groupId>
56       <artifactId>jersey-test-framework-grizzly2</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>junit</groupId>
61       <artifactId>junit</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.felix</groupId>
70         <artifactId>maven-bundle-plugin</artifactId>
71         <extensions>true</extensions>
72         <configuration>
73           <instructions>
74             <Bundle-Activator>org.opendaylight.aaa.sssd.Activator</Bundle-Activator>
75           </instructions>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-checkstyle-plugin</artifactId>
81         <configuration>
82           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
83         </configuration>
84       </plugin>
85     </plugins>
86   </build>
87 </project>