Bump versions to 0.19.6-SNAPSHOT
[aaa.git] / aaa-password-service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Brocade Communications Systems and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.aaa</groupId>
14     <artifactId>aaa-parent</artifactId>
15     <version>0.19.6-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>aaa-password-service-impl</artifactId>
20   <name>ODL :: aaa :: ${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.aaa</groupId>
26       <artifactId>aaa-password-service-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.aaa</groupId>
30       <artifactId>repackaged-shiro</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.osgi</groupId>
34       <artifactId>org.osgi.framework</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.osgi</groupId>
38       <artifactId>org.osgi.service.component</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.osgi</groupId>
42       <artifactId>org.osgi.service.component.annotations</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>yang-binding</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.mdsal</groupId>
50       <artifactId>mdsal-binding-api</artifactId>
51       <scope>provided</scope>
52       <optional>true</optional>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <!--
65             DefaultPasswordHashService is intentionally exported here for internal use by aaa-cli-jar.  In general,
66             it is bad SOA practice to export implementation bundles.  This was done in order to fulfill a specific
67             non-OSGi requirement that uses this implementation directly.  Outside consumers should consider
68             getting the Service through querying the OSGi registry for
69             org.opendaylight.aaa.api.password.service.PasswordHashService implementations instead.
70             -->
71             <Export-Package>
72               org.opendaylight.aaa.impl.password.service.DefaultPasswordHashService
73             </Export-Package>
74             <_dsannotations-options>norequirements</_dsannotations-options>
75           </instructions>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.codehaus.mojo</groupId>
80         <artifactId>build-helper-maven-plugin</artifactId>
81         <executions>
82           <execution>
83             <id>attach-artifacts</id>
84             <phase>package</phase>
85             <goals>
86               <goal>attach-artifact</goal>
87             </goals>
88             <configuration>
89               <artifacts>
90                 <artifact>
91                   <file>${project.build.directory}/classes/initial/aaa-password-service-config.xml</file>
92                   <type>xml</type>
93                   <classifier>aaa-password-service-config</classifier>
94                 </artifact>
95               </artifacts>
96             </configuration>
97           </execution>
98         </executions>
99       </plugin>
100     </plugins>
101   </build>
102 </project>