Fix issues in checkstyle enforcement for module aaa-idmlight
[aaa.git] / aaa-authn-sts / 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   <!--
13   TODO: Remove this artifact after ServiceLocator refactor is performed.
14
15   Do Not Use!  This artifact will be removed in a follow-up patch, but is still needed
16   to support the existing felix dm based activation of AAA.
17   -->
18   <artifactId>aaa-authn-sts</artifactId>
19   <name>ODL :: aaa :: ${project.artifactId}</name>
20   <packaging>bundle</packaging>
21
22   <dependencies>
23     <dependency>
24       <groupId>org.opendaylight.aaa</groupId>
25       <artifactId>aaa-authn</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.aaa</groupId>
29       <artifactId>aaa-authn-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.osgi</groupId>
33       <artifactId>org.osgi.core</artifactId>
34       <scope>provided</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.apache.felix</groupId>
38       <artifactId>org.apache.felix.dependencymanager</artifactId>
39       <scope>provided</scope>
40     </dependency>
41   </dependencies>
42
43   <build>
44     <plugins>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-checkstyle-plugin</artifactId>
48         <configuration>
49           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
50         </configuration>
51       </plugin>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <extensions>true</extensions>
56         <configuration>
57           <instructions>
58             <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
59           </instructions>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64
65 </project>