blob: 0659fbbbb1db6a32021d0c77d2389b2684b81bec [file] [log] [blame]
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright © 2017-2018 AT&T Intellectual Property.
4 Modifications Copyright © 2018 IBM.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18<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">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onap.ccsdk.parent</groupId>
23 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)b511df02019-11-13 10:49:18 -050024 <version>1.5.0</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050025 <relativePath/>
26 </parent>
27
28 <groupId>org.onap.ccsdk.features</groupId>
Timoney, Dan (dt5972)bc483372019-09-11 10:58:56 -040029 <version>0.7.0-SNAPSHOT</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050030 <artifactId>blueprints-generator-provider</artifactId>
31 <packaging>bundle</packaging>
32 <name>Blueprints Generator - Provider</name>
33 <url>http://maven.apache.org</url>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onap.ccsdk.features</groupId>
38 <artifactId>blueprints-model-provider</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onap.ccsdk.features</groupId>
43 <artifactId>blueprints-data-adaptor-provider</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>com.fasterxml.jackson.core</groupId>
48 <artifactId>jackson-core</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050049 </dependency>
50 <dependency>
51 <groupId>com.fasterxml.jackson.core</groupId>
52 <artifactId>jackson-databind</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050053 </dependency>
54 <dependency>
55 <groupId>com.fasterxml.jackson.core</groupId>
56 <artifactId>jackson-annotations</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050057 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.module</groupId>
60 <artifactId>jackson-module-jsonSchema</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050061 </dependency>
62 <dependency>
63 <groupId>commons-io</groupId>
64 <artifactId>commons-io</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050065 </dependency>
66 <dependency>
67 <groupId>org.apache.velocity</groupId>
68 <artifactId>velocity</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050069 </dependency>
70 <dependency>
71 <groupId>org.powermock</groupId>
72 <artifactId>powermock-api-mockito</artifactId>
Timoney, Dan (dt5972)c74f6af2019-07-11 08:47:49 -040073 <version>1.6.4</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.javassist</groupId>
78 <artifactId>javassist</artifactId>
79 <version>3.21.0-GA</version>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.mockito</groupId>
84 <artifactId>mockito-core</artifactId>
85 <version>1.10.19</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050086 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.powermock</groupId>
90 <artifactId>powermock-module-junit4</artifactId>
Timoney, Dan (dt5972)c74f6af2019-07-11 08:47:49 -040091 <version>1.6.4</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.powermock</groupId>
96 <artifactId>powermock-api-support</artifactId>
97 <version>1.6.4</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.powermock</groupId>
102 <artifactId>powermock-reflect</artifactId>
103 <version>1.6.4</version>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.powermock</groupId>
108 <artifactId>powermock-core</artifactId>
109 <version>1.6.4</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>junit</groupId>
114 <artifactId>junit</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500115 <scope>test</scope>
116 </dependency>
117 </dependencies>
118
119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-bundle-plugin</artifactId>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500124 <extensions>true</extensions>
125 <configuration>
126 <instructions>
127 <Bundle-Name>${project.artifactId}</Bundle-Name>
128 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
129 <Export-Package>
130 org.onap.ccsdk.features.generator,
131 org.onap.ccsdk.features.generator.data,
132 org.onap.ccsdk.features.generator.service,
133 org.onap.ccsdk.features.generator.tool
134 </Export-Package>
135 </instructions>
136 </configuration>
137 </plugin>
138 </plugins>
139 </build>
140</project>