| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright © 2017-2018 AT&T Intellectual Property. |
| ~ |
| ~ Modifications Copyright © 2018 IBM. |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.onap.ccsdk.apps</groupId> |
| <artifactId>blueprintsprocessor</artifactId> |
| <version>0.4.0-SNAPSHOT</version> |
| </parent> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>parent</artifactId> |
| <packaging>pom</packaging> |
| <name>Blueprints Processor Parent</name> |
| <description>Blueprints Processor Parent</description> |
| <properties> |
| <spring.boot.version>2.0.6.RELEASE</spring.boot.version> |
| <spring.version>5.0.10.RELEASE</spring.version> |
| <kotlin.version>1.3.0</kotlin.version> |
| <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version> |
| <eelf.version>1.0.0</eelf.version> |
| <sli.version>0.3.1</sli.version> |
| <guava.version>26.0-jre</guava.version> |
| <springfox.swagger2.version>2.9.2</springfox.swagger2.version> |
| <h2database.version>1.4.197</h2database.version> |
| <powermock.version>1.7.4</powermock.version> |
| </properties> |
| <dependencyManagement> |
| <dependencies> |
| <!-- Spring Boot --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-parent</artifactId> |
| <version>${spring.boot.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <!-- Logging Dependencies --> |
| <dependency> |
| <groupId>com.att.eelf</groupId> |
| <artifactId>eelf-core</artifactId> |
| <version>${eelf.version}</version> |
| </dependency> |
| |
| <!-- Kotlin Dependencies --> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-stdlib</artifactId> |
| <version>${kotlin.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlinx-couroutines-core</artifactId> |
| <version>${kotlin.couroutines.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-reflect</artifactId> |
| <version>${kotlin.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-stdlib-jdk8</artifactId> |
| <version>${kotlin.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-stdlib-jdk7</artifactId> |
| <version>${kotlin.version}</version> |
| </dependency> |
| |
| <!-- SLI Version --> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.core</groupId> |
| <artifactId>sli-provider</artifactId> |
| <version>${sli.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.opendaylight.mdsal.model</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <!--<exclusion>--> |
| <!--<groupId>org.opendaylight.controller</groupId>--> |
| <!--<artifactId>*</artifactId>--> |
| <!--</exclusion>--> |
| <exclusion> |
| <groupId>org.apache.tomcat</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.karaf.shell</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.mariadb.jdbc</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| |
| <!-- Application Module Dependencies --> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>db-lib</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>rest-lib</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>db-service</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>execution-service</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>workflow-service</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>resolution-service</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>resource-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| <artifactId>selfservice-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!-- Application Component Dependency --> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId> |
| <artifactId>resource-dict</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!--Swagger Dependencies --> |
| <dependency> |
| <groupId>io.springfox</groupId> |
| <artifactId>springfox-swagger2</artifactId> |
| <version>${springfox.swagger2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.springfox</groupId> |
| <artifactId>springfox-swagger-ui</artifactId> |
| <version>${springfox.swagger2.version}</version> |
| </dependency> |
| |
| <!-- Common Libs --> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <version>3.2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>3.2.2</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>2.6</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.velocity</groupId> |
| <artifactId>velocity</artifactId> |
| <version>1.7</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>${guava.version}</version> |
| </dependency> |
| |
| <!-- Database --> |
| <dependency> |
| <groupId>com.h2database</groupId> |
| <artifactId>h2</artifactId> |
| <version>${h2database.version}</version> |
| </dependency> |
| <!-- Test Dependency --> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-api-mockito2</artifactId> |
| <version>${powermock.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-test-junit</artifactId> |
| <version>${kotlin.version}</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <dependencies> |
| |
| <!-- Application Component Dependency --> |
| <dependency> |
| <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId> |
| <artifactId>resource-dict</artifactId> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.jetbrains.kotlin</groupId> |
| <artifactId>kotlin-maven-plugin</artifactId> |
| <version>${kotlin.version}</version> |
| <executions> |
| <execution> |
| <id>compile</id> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| <configuration> |
| <sourceDirs> |
| <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
| <sourceDir>${project.basedir}/src/main/java</sourceDir> |
| </sourceDirs> |
| </configuration> |
| </execution> |
| <execution> |
| <id>test-compile</id> |
| <goals> |
| <goal>test-compile</goal> |
| </goals> |
| <configuration> |
| <sourceDirs> |
| <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
| <sourceDir>${project.basedir}/src/test/java</sourceDir> |
| </sourceDirs> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.5.1</version> |
| <configuration> |
| <source>${maven.compiler.source}</source> |
| <target>${maven.compiler.target}</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |