a1b6beff496b5d6be525f7988cbbe8172bfcf543
[ccsdk/cds.git] / ms / blueprintsprocessor / cba-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2019 IBM.
4   ~
5   ~  Licensed under the Apache License, Version 2.0 (the "License");
6   ~  you may not use this file except in compliance with the License.
7   ~  You may obtain a copy of the License at
8   ~
9   ~      http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~  Unless required by applicable law or agreed to in writing, software
12   ~  distributed under the License is distributed on an "AS IS" BASIS,
13   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~  See the License for the specific language governing permissions and
15   ~  limitations under the License.
16   -->
17 <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">
18     <modelVersion>4.0.0</modelVersion>
19     <parent>
20         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
21         <artifactId>parent</artifactId>
22         <version>0.7.0-SNAPSHOT</version>
23         <relativePath>../parent</relativePath>
24     </parent>
25     <artifactId>cba-parent</artifactId>
26     <name>CBA Parent</name>
27     <packaging>pom</packaging>
28
29     <build>
30         <sourceDirectory>${project.basedir}/Scripts/kotlin</sourceDirectory>
31         <testSourceDirectory>${project.basedir}/Tests/kotlin</testSourceDirectory>
32         <resources>
33             <resource>
34                 <directory>${project.basedir}/Environments</directory>
35             </resource>
36         </resources>
37         <plugins>
38             <plugin>
39                 <groupId>org.jetbrains.kotlin</groupId>
40                 <artifactId>kotlin-maven-plugin</artifactId>
41                 <version>${kotlin.maven.version}</version>
42                 <executions>
43                     <execution>
44                         <id>compile</id>
45                         <phase>compile</phase>
46                         <goals>
47                             <goal>compile</goal>
48                         </goals>
49                         <configuration>
50                             <sourceDirs>
51                                 <sourceDir>${project.basedir}/Scripts/kotlin</sourceDir>
52                             </sourceDirs>
53                         </configuration>
54                     </execution>
55                     <execution>
56                         <id>test-compile</id>
57                         <phase>test-compile</phase>
58                         <goals>
59                             <goal>test-compile</goal>
60                         </goals>
61                         <configuration>
62                             <sourceDirs>
63                                 <sourceDir>${project.basedir}/Tests/kotlin</sourceDir>
64                             </sourceDirs>
65                         </configuration>
66                     </execution>
67                 </executions>
68             </plugin>
69         </plugins>
70     </build>
71 </project>