blob: 48acd8d924a4c7926f1fa9fea36fd6078a3cbc42 [file] [log] [blame]
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.openecomp.appc</groupId>
8 <artifactId>appc-config-adaptor</artifactId>
9 <version>1.1.0-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>appc-config-adaptor-provider</artifactId>
13 <packaging>bundle</packaging>
14 <name>Config Component Adaptor - Provider</name>
15 <url>http://maven.apache.org</url>
16
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 </properties>
20
21 <dependencies>
22 <dependency>
23 <groupId>junit</groupId>
24 <artifactId>junit</artifactId>
25 <version>3.8.1</version>
26 <scope>test</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.openecomp.sdnc.core</groupId>
30 <artifactId>sli-common</artifactId>
31 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdnc.core</groupId>
35 <artifactId>sli-provider</artifactId>
36 <scope>compile</scope>
37 </dependency>
38
39 <dependency>
40 <groupId>com.att.eelf</groupId>
41 <artifactId>eelf-core</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>com.jcraft</groupId>
46 <artifactId>jsch</artifactId>
47 <version>0.1.52</version>
48 </dependency>
49
50 <dependency>
51 <groupId>jdom</groupId>
52 <artifactId>jdom</artifactId>
53 <version>1.1</version>
54 </dependency>
55
56 <dependency>
57 <groupId>xerces</groupId>
58 <artifactId>xerces</artifactId>
59 <version>2.4.0</version>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.sun.jersey</groupId>
64 <artifactId>jersey-client</artifactId>
65 <version>1.17</version>
66 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.jasypt</groupId>
70 <artifactId>jasypt</artifactId>
71 <version>1.9.2</version>
72 <scope>compile</scope>
73 </dependency>
74 </dependencies>
75
76 <build>
77
78 <plugins>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <extensions>true</extensions>
83 <configuration>
84 <instructions>
85 <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
86 <Bundle-Activator>org.openecomp.appc.config.adaptor.CCAActivator</Bundle-Activator>
87 <Export-Package>org.openecomp.appc.config.adaptor</Export-Package>
88 <Import-Package>*</Import-Package>
89 <DynamicImport-Package>*</DynamicImport-Package>
90 </instructions>
91 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
92 </configuration>
93 </plugin>
94 </plugins>
95
96 </build>
97</project>