Roll versions
[ccsdk/features.git] / blueprints-processor / plugin / generator-provider / pom.xml
1 <?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>
24                 <version>1.4.1-SNAPSHOT</version>
25                 <relativePath/>
26         </parent>
27
28         <groupId>org.onap.ccsdk.features</groupId>
29         <version>0.6.1-SNAPSHOT</version>
30         <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>
49                 </dependency>
50                 <dependency>
51                         <groupId>com.fasterxml.jackson.core</groupId>
52                         <artifactId>jackson-databind</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.fasterxml.jackson.core</groupId>
56                         <artifactId>jackson-annotations</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>com.fasterxml.jackson.module</groupId>
60                         <artifactId>jackson-module-jsonSchema</artifactId>
61                 </dependency>
62                 <dependency>
63                         <groupId>commons-io</groupId>
64                         <artifactId>commons-io</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.apache.velocity</groupId>
68                         <artifactId>velocity</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.powermock</groupId>
72                         <artifactId>powermock-api-mockito</artifactId>
73                         <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>
86                         <scope>test</scope>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.powermock</groupId>
90                         <artifactId>powermock-module-junit4</artifactId>
91                         <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>
110                         <scope>test</scope>
111                 </dependency>
112                 <dependency>
113                         <groupId>junit</groupId>
114                         <artifactId>junit</artifactId>
115                         <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>
124                                 <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>