Merge "Changes to Regex for Name and version Issue-ID: DCAEGEN2-1867"
[dcaegen2/platform.git] / mod / bpgenerator / onap / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ /*
4   ~  * ============LICENSE_START=======================================================
5   ~  *  org.onap.dcae
6   ~  *  ================================================================================
7   ~  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
8   ~  *  ================================================================================
9   ~  *  Licensed under the Apache License, Version 2.0 (the "License");
10   ~  *  you may not use this file except in compliance with the License.
11   ~  *  You may obtain a copy of the License at
12   ~  *
13   ~  *       http://www.apache.org/licenses/LICENSE-2.0
14   ~  *
15   ~  *  Unless required by applicable law or agreed to in writing, software
16   ~  *  distributed under the License is distributed on an "AS IS" BASIS,
17   ~  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   ~  *  See the License for the specific language governing permissions and
19   ~  *  limitations under the License.
20   ~  *  ============LICENSE_END=========================================================
21   ~  */
22   ~
23   -->
24
25 <project xmlns="http://maven.apache.org/POM/4.0.0"
26          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28     <modelVersion>4.0.0</modelVersion>
29
30     <artifactId>blueprint-generator-onap</artifactId>
31     <version>1.7.0-SNAPSHOT</version>
32     <packaging>jar</packaging>
33
34     <name>Onap</name>
35     <description>This Application is used to generate ONAP Blueprint YAML Files for given Component Specs</description>
36
37     <parent>
38         <groupId>org.onap.dcaegen2.platform.mod</groupId>
39         <artifactId>blueprint-generator</artifactId>
40         <version>1.7.0-SNAPSHOT</version>
41     </parent>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.onap.dcaegen2.platform.mod</groupId>
46             <artifactId>blueprint-generator-common</artifactId>
47             <version>2.0.0-SNAPSHOT</version>
48             <scope>compile</scope>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.springframework.boot</groupId>
56                 <artifactId>spring-boot-maven-plugin</artifactId>
57                 <version>2.2.5.RELEASE</version>
58                 <executions>
59                     <execution>
60                         <goals>
61                             <goal>repackage</goal>
62                         </goals>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67         <finalName>onap-blueprint-generator-${project.version}</finalName>
68     </build>
69
70 </project>