Added review comment
[appc.git] / appc-outbound / appc-aai-client / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
4         <modelVersion>4.0.0</modelVersion>\r
5         <parent>\r
6                 <groupId>org.openecomp.appc</groupId>\r
7                 <artifactId>appc-aai-client</artifactId>\r
8                 <version>1.1.0-SNAPSHOT</version>\r
9         </parent>\r
10         <artifactId>appc-aai-client-provider</artifactId>\r
11         <packaging>bundle</packaging>\r
12         <name>APPC AAI Client - Provider</name>\r
13 \r
14         <properties>\r
15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
16         </properties>\r
17         <dependencies>\r
18                 <dependency>\r
19                         <groupId>equinoxSDK381</groupId>\r
20                         <artifactId>org.eclipse.osgi</artifactId>\r
21                         <version>${equinox.osgi.version}</version>\r
22                 </dependency>\r
23                 <dependency>\r
24                         <groupId>org.openecomp.sdnc.core</groupId>\r
25                         <artifactId>sli-provider</artifactId>\r
26                         <scope>compile</scope>\r
27                 </dependency>\r
28 \r
29                 <dependency>\r
30                         <groupId>org.openecomp.sdnc.adaptors</groupId>\r
31                         <artifactId>aai-service-provider</artifactId>\r
32                         <scope>compile</scope>\r
33                 </dependency>\r
34 \r
35 \r
36                 <dependency>\r
37                         <groupId>commons-io</groupId>\r
38                         <artifactId>commons-io</artifactId>\r
39                         <version>2.5</version>\r
40                 </dependency>\r
41 \r
42                 <dependency>\r
43                         <groupId>com.att.eelf</groupId>\r
44                         <artifactId>eelf-core</artifactId>\r
45                 </dependency>\r
46 \r
47                 <dependency>\r
48                         <groupId>junit</groupId>\r
49                         <artifactId>junit</artifactId>\r
50                         <scope>test</scope>\r
51                 </dependency>\r
52 \r
53 \r
54 \r
55         </dependencies>\r
56         <build>\r
57                 <plugins>\r
58                         <plugin>\r
59                                 <artifactId>maven-resources-plugin</artifactId>\r
60                                 <version>2.6</version>\r
61                                 <executions>\r
62                                         <execution>\r
63                                                 <id>copy-xsl</id>\r
64                                                 <goals>\r
65                                                         <goal>copy-resources</goal>\r
66                                                 </goals>\r
67                                                 <phase>validate</phase>\r
68                                                 <configuration>\r
69                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>\r
70                                                         <resources>\r
71                                                                 <resource>\r
72                                                                         <directory>src/main/resources/xsl</directory>\r
73                                                                         <includes>\r
74                                                                                 <include>*</include>\r
75                                                                         </includes>\r
76                                                                         <filtering>true</filtering>\r
77                                                                 </resource>\r
78                                                         </resources>\r
79                                                 </configuration>\r
80                                         </execution>\r
81                                         <execution>\r
82                                                 <id>copy-properties</id>\r
83                                                 <goals>\r
84                                                         <goal>copy-resources</goal>\r
85                                                 </goals>\r
86                                                 <phase>validate</phase>\r
87                                                 <configuration>\r
88                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>\r
89                                                         <resources>\r
90                                                                 <resource>\r
91                                                                         <directory>src/main/resources</directory>\r
92                                                                         <includes>\r
93                                                                                 <include>*.properties</include>\r
94                                                                         </includes>\r
95                                                                         <filtering>true</filtering>\r
96                                                                 </resource>\r
97                                                         </resources>\r
98                                                 </configuration>\r
99                                         </execution>\r
100                                 </executions>\r
101                         </plugin>\r
102                         <plugin>\r
103                                 <groupId>org.apache.felix</groupId>\r
104                                 <artifactId>maven-bundle-plugin</artifactId>\r
105                                 <version>${bundle.plugin.version}</version>\r
106                                 <extensions>true</extensions>\r
107                                 <configuration>\r
108                                         <instructions>\r
109                                                 <Bundle-SymbolicName>org.openecomp.appc.aai.client</Bundle-SymbolicName>\r
110                                                 <Bundle-Activator>org.openecomp.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>\r
111                                                 <Export-Package>org.openecomp.appc.aai.client</Export-Package>\r
112                                                 <Import-Package>*</Import-Package>\r
113                                                 <DynamicImport-Package>*</DynamicImport-Package>\r
114                                         </instructions>\r
115                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>\r
116                                 </configuration>\r
117                         </plugin>\r
118                 </plugins>\r
119                 <pluginManagement>\r
120                         <plugins>\r
121                         </plugins>\r
122                 </pluginManagement>\r
123         </build>\r
124 </project>\r