Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright © 2017-2018 AT&T Intellectual Property. |
| 4 | ~ |
| 5 | ~ Modifications Copyright © 2018 IBM. |
| 6 | ~ |
| 7 | ~ 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 | --> |
Timoney, Dan (dt5972) | 6afa8a4 | 2019-03-14 13:55:01 -0400 | [diff] [blame] | 19 | <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"> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 22 | <groupId>org.onap.ccsdk.cds</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 23 | <artifactId>components</artifactId> |
Ezhilarasi | c75c7f2 | 2019-08-05 17:40:35 +0530 | [diff] [blame] | 24 | <version>0.5.2-SNAPSHOT</version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 25 | </parent> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 26 | <groupId>org.onap.ccsdk.cds.components</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 27 | <artifactId>parent</artifactId> |
Alexis de Talhouët | b7fee46 | 2019-01-03 16:53:40 -0500 | [diff] [blame] | 28 | <name>Components Parent</name> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 29 | <packaging>pom</packaging> |
| 30 | <properties> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 31 | <eelf.version>1.0.0</eelf.version> |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 32 | <guava.version>27.0.1-jre</guava.version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 33 | <springfox.swagger2.version>2.9.2</springfox.swagger2.version> |
| 34 | <h2database.version>1.4.197</h2database.version> |
Timoney, Dan (dt5972) | 6f870c2 | 2018-10-25 10:34:51 -0400 | [diff] [blame] | 35 | <onap.logger.slf4j>1.2.2</onap.logger.slf4j> |
Steve Siani | 49552ce | 2019-07-08 12:33:43 -0400 | [diff] [blame] | 36 | <velocity.version>1.7</velocity.version> |
| 37 | <jinja.version>2.5.1</jinja.version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 38 | </properties> |
| 39 | <dependencyManagement> |
| 40 | <dependencies> |
| 41 | <!-- Spring boot --> |
| 42 | <dependency> |
| 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-dependencies</artifactId> |
| 45 | <version>${spring.boot.version}</version> |
| 46 | <type>pom</type> |
| 47 | <scope>import</scope> |
| 48 | </dependency> |
| 49 | |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 50 | <!--Swagger Dependencies --> |
| 51 | <dependency> |
| 52 | <groupId>io.springfox</groupId> |
| 53 | <artifactId>springfox-swagger2</artifactId> |
| 54 | <version>${springfox.swagger2.version}</version> |
Alexis de Talhouët | c4efe03 | 2019-03-28 15:43:40 -0400 | [diff] [blame] | 55 | <exclusions> |
| 56 | <exclusion> |
| 57 | <groupId>org.slf4j</groupId> |
| 58 | <artifactId>slf4j-api</artifactId> |
| 59 | </exclusion> |
| 60 | </exclusions> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>io.springfox</groupId> |
| 64 | <artifactId>springfox-swagger-ui</artifactId> |
| 65 | <version>${springfox.swagger2.version}</version> |
| 66 | </dependency> |
| 67 | |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 68 | <!-- Common Utils Dependencies --> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.apache.commons</groupId> |
| 71 | <artifactId>commons-lang3</artifactId> |
| 72 | <version>3.2.1</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>commons-collections</groupId> |
| 76 | <artifactId>commons-collections</artifactId> |
| 77 | <version>3.2.2</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>commons-io</groupId> |
| 81 | <artifactId>commons-io</artifactId> |
| 82 | <version>2.6</version> |
| 83 | </dependency> |
| 84 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 6cba7f8 | 2018-12-04 10:25:44 -0500 | [diff] [blame] | 85 | <groupId>org.apache.commons</groupId> |
| 86 | <artifactId>commons-compress</artifactId> |
| 87 | <version>1.15</version> |
| 88 | </dependency> |
| 89 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 90 | <groupId>org.apache.velocity</groupId> |
| 91 | <artifactId>velocity</artifactId> |
Steve Siani | 49552ce | 2019-07-08 12:33:43 -0400 | [diff] [blame] | 92 | <version>${velocity.version}</version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>com.google.guava</groupId> |
| 96 | <artifactId>guava</artifactId> |
| 97 | <version>${guava.version}</version> |
| 98 | </dependency> |
Steve Siani | 49552ce | 2019-07-08 12:33:43 -0400 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>com.hubspot.jinjava</groupId> |
| 101 | <artifactId>jinjava</artifactId> |
| 102 | <version>${jinja.version}</version> |
| 103 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 104 | |
| 105 | <!-- Kotlin Dependencies --> |
| 106 | <dependency> |
| 107 | <groupId>org.jetbrains.kotlin</groupId> |
| 108 | <artifactId>kotlin-stdlib</artifactId> |
| 109 | <version>${kotlin.version}</version> |
| 110 | </dependency> |
| 111 | <dependency> |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 112 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh | c5da036 | 2019-01-23 11:42:13 -0500 | [diff] [blame] | 113 | <artifactId>kotlin-stdlib-common</artifactId> |
| 114 | <version>${kotlin.version}</version> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 118 | <artifactId>kotlin-scripting-jvm-host</artifactId> |
| 119 | <version>${kotlin.version}</version> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.jetbrains.kotlin</groupId> |
| 123 | <artifactId>kotlin-compiler-embeddable</artifactId> |
| 124 | <version>${kotlin.version}</version> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.jetbrains.kotlin</groupId> |
| 128 | <artifactId>kotlin-script-util</artifactId> |
| 129 | <version>${kotlin.version}</version> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.jetbrains.kotlin</groupId> |
| 133 | <artifactId>kotlin-script-runtime</artifactId> |
| 134 | <version>${kotlin.version}</version> |
| 135 | </dependency> |
| 136 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 1684197 | 2018-11-24 14:25:26 -0500 | [diff] [blame] | 137 | <groupId>org.jetbrains.kotlinx</groupId> |
| 138 | <artifactId>kotlinx-coroutines-core</artifactId> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 139 | <version>${kotlin.couroutines.version}</version> |
| 140 | </dependency> |
| 141 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | df390dc | 2018-12-20 11:16:31 -0500 | [diff] [blame] | 142 | <groupId>org.jetbrains.kotlinx</groupId> |
| 143 | <artifactId>kotlinx-coroutines-reactor</artifactId> |
| 144 | <version>${kotlin.couroutines.version}</version> |
| 145 | </dependency> |
| 146 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 147 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 148 | <artifactId>kotlin-reflect</artifactId> |
| 149 | <version>${kotlin.version}</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.jetbrains.kotlin</groupId> |
| 153 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 154 | <version>${kotlin.version}</version> |
| 155 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 156 | <dependency> |
| 157 | <groupId>org.jetbrains.kotlin</groupId> |
| 158 | <artifactId>kotlin-stdlib-jdk7</artifactId> |
| 159 | <version>${kotlin.version}</version> |
| 160 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 161 | |
Muthuramalingam, Brinda Santh(bs2796) | 1684197 | 2018-11-24 14:25:26 -0500 | [diff] [blame] | 162 | <!-- GRPC Dependencies --> |
| 163 | <dependency> |
| 164 | <groupId>io.grpc</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | a4863f4 | 2018-12-01 19:54:07 -0500 | [diff] [blame] | 165 | <artifactId>grpc-core</artifactId> |
| 166 | <version>${grpc.version}</version> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>io.grpc</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 1684197 | 2018-11-24 14:25:26 -0500 | [diff] [blame] | 170 | <artifactId>grpc-netty</artifactId> |
| 171 | <version>${grpc.version}</version> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>io.grpc</groupId> |
| 175 | <artifactId>grpc-protobuf</artifactId> |
| 176 | <version>${grpc.version}</version> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>io.grpc</groupId> |
| 180 | <artifactId>grpc-stub</artifactId> |
| 181 | <version>${grpc.version}</version> |
| 182 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 0948a5a | 2018-12-07 16:37:03 -0500 | [diff] [blame] | 183 | <dependency> |
| 184 | <groupId>com.google.protobuf</groupId> |
| 185 | <artifactId>protobuf-java-util</artifactId> |
| 186 | <version>${protobuff.java.utils.version}</version> |
| 187 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 1684197 | 2018-11-24 14:25:26 -0500 | [diff] [blame] | 188 | |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 189 | |
| 190 | <!-- Database --> |
| 191 | <dependency> |
| 192 | <groupId>com.h2database</groupId> |
| 193 | <artifactId>h2</artifactId> |
| 194 | <version>${h2database.version}</version> |
| 195 | </dependency> |
| 196 | |
| 197 | |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 198 | <!-- Testing Dependencies --> |
| 199 | <dependency> |
Alexis de Talhouët | 47a0cd9 | 2019-01-09 16:57:48 -0500 | [diff] [blame] | 200 | <groupId>io.mockk</groupId> |
| 201 | <artifactId>mockk</artifactId> |
| 202 | <version>${mockk.version}</version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 203 | <scope>test</scope> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 207 | <artifactId>kotlin-test-junit</artifactId> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 208 | <version>${kotlin.version}</version> |
| 209 | <scope>test</scope> |
| 210 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | a4863f4 | 2018-12-01 19:54:07 -0500 | [diff] [blame] | 211 | <dependency> |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 212 | <groupId>org.jetbrains.kotlinx</groupId> |
| 213 | <artifactId>kotlinx-coroutines-test</artifactId> |
| 214 | <version>${kotlin.couroutines.version}</version> |
| 215 | <scope>test</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | a4863f4 | 2018-12-01 19:54:07 -0500 | [diff] [blame] | 218 | <groupId>io.grpc</groupId> |
| 219 | <artifactId>grpc-testing</artifactId> |
| 220 | <version>${grpc.version}</version> |
| 221 | <scope>test</scope> |
| 222 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 223 | </dependencies> |
| 224 | </dependencyManagement> |
| 225 | |
| 226 | <dependencies> |
| 227 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 228 | <groupId>org.apache.commons</groupId> |
| 229 | <artifactId>commons-lang3</artifactId> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 230 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 231 | <dependency> |
| 232 | <groupId>commons-collections</groupId> |
| 233 | <artifactId>commons-collections</artifactId> |
| 234 | </dependency> |
| 235 | <dependency> |
| 236 | <groupId>commons-io</groupId> |
| 237 | <artifactId>commons-io</artifactId> |
| 238 | </dependency> |
| 239 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 6cba7f8 | 2018-12-04 10:25:44 -0500 | [diff] [blame] | 240 | <groupId>org.apache.commons</groupId> |
| 241 | <artifactId>commons-compress</artifactId> |
| 242 | </dependency> |
| 243 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 244 | <groupId>com.jayway.jsonpath</groupId> |
| 245 | <artifactId>json-path</artifactId> |
Alexis de Talhouët | c4efe03 | 2019-03-28 15:43:40 -0400 | [diff] [blame] | 246 | <exclusions> |
| 247 | <exclusion> |
| 248 | <groupId>org.slf4j</groupId> |
| 249 | <artifactId>slf4j-api</artifactId> |
| 250 | </exclusion> |
| 251 | </exclusions> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 252 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | c4dcf1a | 2018-11-10 11:54:05 -0500 | [diff] [blame] | 253 | <dependency> |
| 254 | <groupId>com.google.guava</groupId> |
| 255 | <artifactId>guava</artifactId> |
| 256 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 257 | <dependency> |
| 258 | <groupId>io.springfox</groupId> |
| 259 | <artifactId>springfox-swagger2</artifactId> |
Alexis de Talhouët | c4efe03 | 2019-03-28 15:43:40 -0400 | [diff] [blame] | 260 | <exclusions> |
| 261 | <exclusion> |
| 262 | <groupId>org.slf4j</groupId> |
| 263 | <artifactId>slf4j-api</artifactId> |
| 264 | </exclusion> |
| 265 | </exclusions> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 266 | </dependency> |
| 267 | <dependency> |
| 268 | <groupId>io.springfox</groupId> |
| 269 | <artifactId>springfox-swagger-ui</artifactId> |
| 270 | </dependency> |
| 271 | <dependency> |
| 272 | <groupId>org.jetbrains.kotlin</groupId> |
| 273 | <artifactId>kotlin-stdlib</artifactId> |
| 274 | </dependency> |
| 275 | <dependency> |
| 276 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh | a3450eb | 2019-01-11 11:30:40 -0500 | [diff] [blame] | 277 | <artifactId>kotlin-script-util</artifactId> |
| 278 | </dependency> |
| 279 | <dependency> |
| 280 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 281 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 282 | </dependency> |
| 283 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 1684197 | 2018-11-24 14:25:26 -0500 | [diff] [blame] | 284 | <groupId>org.jetbrains.kotlinx</groupId> |
| 285 | <artifactId>kotlinx-coroutines-core</artifactId> |
| 286 | </dependency> |
| 287 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | df390dc | 2018-12-20 11:16:31 -0500 | [diff] [blame] | 288 | <groupId>org.jetbrains.kotlinx</groupId> |
| 289 | <artifactId>kotlinx-coroutines-reactor</artifactId> |
| 290 | </dependency> |
| 291 | <dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 292 | <groupId>com.fasterxml.jackson.module</groupId> |
| 293 | <artifactId>jackson-module-kotlin</artifactId> |
| 294 | </dependency> |
Muthuramalingam, Brinda Santh(bs2796) | 0948a5a | 2018-12-07 16:37:03 -0500 | [diff] [blame] | 295 | <!-- GRPC Dependencies --> |
| 296 | <dependency> |
| 297 | <groupId>io.grpc</groupId> |
| 298 | <artifactId>grpc-netty</artifactId> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>io.grpc</groupId> |
| 302 | <artifactId>grpc-protobuf</artifactId> |
| 303 | </dependency> |
| 304 | <dependency> |
| 305 | <groupId>io.grpc</groupId> |
| 306 | <artifactId>grpc-stub</artifactId> |
| 307 | </dependency> |
| 308 | <dependency> |
| 309 | <groupId>com.google.protobuf</groupId> |
| 310 | <artifactId>protobuf-java-util</artifactId> |
| 311 | </dependency> |
| 312 | |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 313 | </dependencies> |
| 314 | |
| 315 | <build> |
| 316 | <plugins> |
| 317 | <plugin> |
| 318 | <groupId>org.apache.maven.plugins</groupId> |
| 319 | <artifactId>maven-source-plugin</artifactId> |
| 320 | <version>3.0.1</version> |
| 321 | <executions> |
| 322 | <execution> |
| 323 | <id>attach-sources</id> |
| 324 | <goals> |
| 325 | <goal>jar</goal> |
| 326 | </goals> |
| 327 | </execution> |
| 328 | </executions> |
| 329 | </plugin> |
| 330 | |
| 331 | <plugin> |
| 332 | <artifactId>kotlin-maven-plugin</artifactId> |
| 333 | <groupId>org.jetbrains.kotlin</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 758fde4 | 2018-11-15 08:36:28 -0500 | [diff] [blame] | 334 | <version>${kotlin.maven.version}</version> |
Muthuramalingam, Brinda Santh(bs2796) | 052b7bd | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 335 | <executions> |
| 336 | <execution> |
| 337 | <id>compile</id> |
| 338 | <goals> |
| 339 | <goal>compile</goal> |
| 340 | </goals> |
| 341 | <configuration> |
| 342 | <sourceDirs> |
| 343 | <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
| 344 | <sourceDir>${project.basedir}/src/main/java</sourceDir> |
| 345 | </sourceDirs> |
| 346 | </configuration> |
| 347 | </execution> |
| 348 | <execution> |
| 349 | <id>test-compile</id> |
| 350 | <goals> |
| 351 | <goal>test-compile</goal> |
| 352 | </goals> |
| 353 | <configuration> |
| 354 | <sourceDirs> |
| 355 | <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
| 356 | <sourceDir>${project.basedir}/src/test/java</sourceDir> |
| 357 | </sourceDirs> |
| 358 | </configuration> |
| 359 | </execution> |
| 360 | </executions> |
| 361 | </plugin> |
| 362 | <plugin> |
| 363 | <groupId>org.apache.maven.plugins</groupId> |
| 364 | <artifactId>maven-compiler-plugin</artifactId> |
| 365 | <version>3.5.1</version> |
| 366 | <configuration> |
| 367 | <source>${maven.compiler.source}</source> |
| 368 | <target>${maven.compiler.target}</target> |
| 369 | </configuration> |
| 370 | <executions> |
| 371 | <!-- Replacing default-compile as it is treated specially by maven --> |
| 372 | <execution> |
| 373 | <id>default-compile</id> |
| 374 | <phase>none</phase> |
| 375 | </execution> |
| 376 | <!-- Replacing default-testCompile as it is treated specially by maven --> |
| 377 | <execution> |
| 378 | <id>default-testCompile</id> |
| 379 | <phase>none</phase> |
| 380 | </execution> |
| 381 | <execution> |
| 382 | <id>java-compile</id> |
| 383 | <phase>compile</phase> |
| 384 | <goals> |
| 385 | <goal>compile</goal> |
| 386 | </goals> |
| 387 | </execution> |
| 388 | <execution> |
| 389 | <id>java-test-compile</id> |
| 390 | <phase>test-compile</phase> |
| 391 | <goals> |
| 392 | <goal>testCompile</goal> |
| 393 | </goals> |
| 394 | </execution> |
| 395 | </executions> |
| 396 | </plugin> |
| 397 | </plugins> |
| 398 | </build> |
| 399 | </project> |