Muthuramalingam, Brinda Santh(bs2796) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright © 2017-2018 AT&T Intellectual Property. |
| 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" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 20 | <version>0.0.3-SNAPSHOT</version> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>parent</artifactId> |
| 23 | <packaging>pom</packaging> |
| 24 | <name>Blueprints Processor Parent</name> |
| 25 | <description>Blueprints Processor Parent</description> |
| 26 | <properties> |
| 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 29 | <maven.compiler.target>1.8</maven.compiler.target> |
| 30 | <maven.compiler.source>1.8</maven.compiler.source> |
| 31 | <java.version>1.8</java.version> |
| 32 | <controllerblueprints.version>0.3.0-SNAPSHOT</controllerblueprints.version> |
| 33 | <spring.boot.version>2.0.4.RELEASE</spring.boot.version> |
| 34 | <kotlin.version>1.2.60</kotlin.version> |
| 35 | <springfox.swagger2.version>2.9.2</springfox.swagger2.version> |
| 36 | <h2database.version>1.4.197</h2database.version> |
| 37 | </properties> |
| 38 | <dependencyManagement> |
| 39 | <dependencies> |
| 40 | <!-- Application Module Dependencies --> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 43 | <artifactId>db-lib</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 48 | <artifactId>rest-lib</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 53 | <artifactId>core</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 58 | <artifactId>db-service</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 63 | <artifactId>execution-service</artifactId> |
| 64 | <version>${project.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 68 | <artifactId>resolution-service</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 73 | <artifactId>resource-api</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 78 | <artifactId>selfservice-api</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | </dependency> |
| 81 | |
| 82 | <!-- Application Component Dependency --> |
| 83 | <dependency> |
| 84 | <groupId>org.onap.ccsdk.apps</groupId> |
| 85 | <artifactId>controllerblueprints-resource-dict</artifactId> |
| 86 | <version>${controllerblueprints.version}</version> |
| 87 | </dependency> |
| 88 | |
| 89 | <!--Swagger Dependencies --> |
| 90 | <dependency> |
| 91 | <groupId>io.springfox</groupId> |
| 92 | <artifactId>springfox-swagger2</artifactId> |
| 93 | <version>${springfox.swagger2.version}</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>io.springfox</groupId> |
| 97 | <artifactId>springfox-swagger-ui</artifactId> |
| 98 | <version>${springfox.swagger2.version}</version> |
| 99 | </dependency> |
| 100 | |
| 101 | <!-- Spring Boot --> |
| 102 | |
| 103 | <dependency> |
| 104 | <groupId>org.springframework.boot</groupId> |
| 105 | <artifactId>spring-boot-starter-parent</artifactId> |
| 106 | <version>${spring.boot.version}</version> |
| 107 | <type>pom</type> |
| 108 | <scope>import</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.jetbrains.kotlin</groupId> |
| 112 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 113 | <version>${kotlin.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.jetbrains.kotlin</groupId> |
| 117 | <artifactId>kotlin-reflect</artifactId> |
| 118 | <version>${kotlin.version}</version> |
| 119 | </dependency> |
| 120 | <!-- Database --> |
| 121 | <dependency> |
| 122 | <groupId>com.h2database</groupId> |
| 123 | <artifactId>h2</artifactId> |
| 124 | <version>${h2database.version}</version> |
| 125 | </dependency> |
| 126 | <!-- Test Dependency --> |
| 127 | <dependency> |
| 128 | <groupId>org.jetbrains.kotlin</groupId> |
| 129 | <artifactId>kotlin-test</artifactId> |
| 130 | <version>${kotlin.version}</version> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | </dependencies> |
| 134 | </dependencyManagement> |
| 135 | <dependencies> |
| 136 | <dependency> |
| 137 | <groupId>org.apache.commons</groupId> |
| 138 | <artifactId>commons-lang3</artifactId> |
| 139 | <version>3.2.1</version> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>commons-collections</groupId> |
| 143 | <artifactId>commons-collections</artifactId> |
| 144 | <version>3.2.2</version> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>commons-io</groupId> |
| 148 | <artifactId>commons-io</artifactId> |
| 149 | <version>2.6</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.apache.velocity</groupId> |
| 153 | <artifactId>velocity</artifactId> |
| 154 | <version>1.7</version> |
| 155 | </dependency> |
| 156 | |
| 157 | <dependency> |
| 158 | <groupId>io.springfox</groupId> |
| 159 | <artifactId>springfox-swagger2</artifactId> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>io.springfox</groupId> |
| 163 | <artifactId>springfox-swagger-ui</artifactId> |
| 164 | </dependency> |
| 165 | |
| 166 | <dependency> |
| 167 | <groupId>org.springframework.boot</groupId> |
| 168 | <artifactId>spring-boot-starter-test</artifactId> |
| 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>org.jetbrains.kotlin</groupId> |
| 173 | <artifactId>kotlin-test</artifactId> |
| 174 | <version>${kotlin.version}</version> |
| 175 | <scope>test</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>io.projectreactor</groupId> |
| 179 | <artifactId>reactor-test</artifactId> |
| 180 | <scope>test</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.jetbrains.kotlin</groupId> |
| 184 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 185 | <version>${kotlin.version}</version> |
| 186 | </dependency> |
| 187 | </dependencies> |
| 188 | <build> |
| 189 | <plugins> |
| 190 | <plugin> |
| 191 | <groupId>org.jetbrains.kotlin</groupId> |
| 192 | <artifactId>kotlin-maven-plugin</artifactId> |
| 193 | <version>${kotlin.version}</version> |
| 194 | <executions> |
| 195 | <execution> |
| 196 | <id>compile</id> |
| 197 | <goals> |
| 198 | <goal>compile</goal> |
| 199 | </goals> |
| 200 | <configuration> |
| 201 | <sourceDirs> |
| 202 | <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
| 203 | <sourceDir>${project.basedir}/src/main/java</sourceDir> |
| 204 | </sourceDirs> |
| 205 | </configuration> |
| 206 | </execution> |
| 207 | <execution> |
| 208 | <id>test-compile</id> |
| 209 | <goals> |
| 210 | <goal>test-compile</goal> |
| 211 | </goals> |
| 212 | <configuration> |
| 213 | <sourceDirs> |
| 214 | <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
| 215 | <sourceDir>${project.basedir}/src/test/java</sourceDir> |
| 216 | </sourceDirs> |
| 217 | </configuration> |
| 218 | </execution> |
| 219 | </executions> |
| 220 | </plugin> |
| 221 | <plugin> |
| 222 | <groupId>org.apache.maven.plugins</groupId> |
| 223 | <artifactId>maven-compiler-plugin</artifactId> |
| 224 | <version>3.5.1</version> |
| 225 | <configuration> |
| 226 | <source>${maven.compiler.source}</source> |
| 227 | <target>${maven.compiler.target}</target> |
| 228 | </configuration> |
| 229 | </plugin> |
| 230 | </plugins> |
| 231 | </build> |
| 232 | </project> |