blob: 173e4c347150aefe999d454a350c988ed4c45b11 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhafbc1522018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
6 ~
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00007 ~ Licensed under the Apache License, Version 2.0 (the "License");
8 ~ you may not use this file except in compliance with the License.
9 ~ You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing, software
14 ~ distributed under the License is distributed on an "AS IS" BASIS,
15 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ~ See the License for the specific language governing permissions and
17 ~ limitations under the License.
18 -->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
24 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)905559f2018-09-27 16:26:45 -040025 <version>0.3.1-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000026 <relativePath>../parent</relativePath>
27 </parent>
28
29 <artifactId>modules</artifactId>
30 <packaging>pom</packaging>
31 <name>Blueprints Processor Modules POM</name>
32 <description>Blueprints Processor Modules</description>
33
34 <modules>
35 <module>commons</module>
36 <module>outbounds</module>
37 <module>services</module>
38 <module>inbounds</module>
39 </modules>
40
41 <properties>
42 <kotlin.version>1.2.60</kotlin.version>
43 </properties>
44
45 <dependencies>
46 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -040047 <groupId>org.powermock</groupId>
48 <artifactId>powermock-api-mockito2</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-test</artifactId>
54 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000055 </dependency>
56 <dependency>
57 <groupId>org.jetbrains.kotlin</groupId>
58 <artifactId>kotlin-test</artifactId>
Brinda Santhafbc1522018-08-23 23:34:05 -040059 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>io.projectreactor</groupId>
63 <artifactId>reactor-test</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000064 <scope>test</scope>
65 </dependency>
66 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.jetbrains.kotlin</groupId>
72 <artifactId>kotlin-maven-plugin</artifactId>
73 <version>${kotlin.version}</version>
74 <executions>
75 <execution>
76 <id>compile</id>
77 <phase>compile</phase>
78 <goals>
79 <goal>compile</goal>
80 </goals>
81 </execution>
82 <execution>
83 <id>test-compile</id>
84 <phase>test-compile</phase>
85 <goals>
86 <goal>test-compile</goal>
87 </goals>
88 </execution>
89 </executions>
90 <configuration>
91 <jvmTarget>1.8</jvmTarget>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96
97
98</project>