Bump versions to 0.13.4-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.13.4-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.aaa</groupId>
20   <artifactId>aaa-password-service-impl</artifactId>
21   <version>0.13.4-SNAPSHOT</version>
22   <name>ODL :: aaa :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.aaa</groupId>
28       <artifactId>aaa-password-service-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.shiro</groupId>
32       <artifactId>shiro-core</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>osgi.cmpn</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal</groupId>
40       <artifactId>mdsal-binding-api</artifactId>
41       <scope>provided</scope>
42       <optional>true</optional>
43     </dependency>
44   </dependencies>
45
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <!--
55             DefaultPasswordHashService is intentionally exported here for internal use by aaa-cli-jar.  In general,
56             it is bad SOA practice to export implementation bundles.  This was done in order to fulfill a specific
57             non-OSGi requirement that uses this implementation directly.  Outside consumers should consider
58             getting the Service through querying the OSGi registry for
59             org.opendaylight.aaa.api.password.service.PasswordHashService implementations instead.
60             -->
61             <Export-Package>
62               org.opendaylight.aaa.impl.password.service.DefaultPasswordHashService
63             </Export-Package>
64             <_dsannotations-options>norequirements</_dsannotations-options>
65           </instructions>
66         </configuration>
67       </plugin>
68       <plugin>
69         <groupId>org.codehaus.mojo</groupId>
70         <artifactId>build-helper-maven-plugin</artifactId>
71         <executions>
72           <execution>
73             <id>attach-artifacts</id>
74             <phase>package</phase>
75             <goals>
76               <goal>attach-artifact</goal>
77             </goals>
78             <configuration>
79               <artifacts>
80                 <artifact>
81                   <file>${project.build.directory}/classes/initial/aaa-password-service-config.xml</file>
82                   <type>xml</type>
83                   <classifier>aaa-password-service-config</classifier>
84                 </artifact>
85               </artifacts>
86             </configuration>
87           </execution>
88         </executions>
89       </plugin>
90     </plugins>
91   </build>
92 </project>