blob: 490487687bcb14a1abff227478eb53752f9c4a71 [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.
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -05006 ~ Modifications Copyright © 2019 Bell Canada.
Brinda Santhafbc1522018-08-23 23:34:05 -04007 ~
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00008 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 -->
Timoney, Dan (dt5972)743f1dc2019-03-14 13:55:01 -040020<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)4b3c8a02018-08-15 21:31:10 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040023 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000024 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)f6aba622019-04-30 14:28:15 -040025 <version>0.5.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000026 <relativePath>../parent</relativePath>
27 </parent>
28 <artifactId>application</artifactId>
29 <packaging>jar</packaging>
30 <name>Blueprints Processor Application</name>
31 <description>Blueprints Processor Application</description>
32
33 <dependencies>
34 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040035 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh2ecd4e72019-02-07 14:51:50 -050036 <artifactId>blueprint-core</artifactId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050037 </dependency>
38 <dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000039 <groupId>org.springframework.boot</groupId>
Alexis de Talhouëte4a1f832019-03-04 21:37:27 -050040 <artifactId>spring-boot-starter-security</artifactId>
41 </dependency>
42
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050043 <!-- North Bound -->
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000044 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040045 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000046 <artifactId>resource-api</artifactId>
47 </dependency>
48 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040049 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
Alexis de Talhouët7aa5df82019-02-11 17:23:48 -050050 <artifactId>python-executor</artifactId>
51 </dependency>
52 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040053 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
Alexis de Talhouëtc55160e2019-02-12 23:05:01 -050054 <artifactId>netconf-executor</artifactId>
55 </dependency>
56 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040057 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
ottero9d334562019-03-11 14:03:09 +000058 <artifactId>restconf-executor</artifactId>
59 </dependency>
60 <dependency>
Brinda Santh145662f2019-05-16 12:37:55 -040061 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
62 <artifactId>cli-executor</artifactId>
63 </dependency>
64 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040065 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000066 <artifactId>selfservice-api</artifactId>
67 </dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -040068 <dependency>
Muthuramalingam, Brinda Santh(bs2796)99b20422018-12-06 16:46:19 -050069 <groupId>com.h2database</groupId>
70 <artifactId>h2</artifactId>
71 </dependency>
72 <dependency>
Brinda Santhafbc1522018-08-23 23:34:05 -040073 <groupId>org.powermock</groupId>
74 <artifactId>powermock-api-mockito2</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-test</artifactId>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c6ffd3c2018-11-10 11:54:05 -050084 <artifactId>kotlin-test-junit</artifactId>
Brinda Santhafbc1522018-08-23 23:34:05 -040085 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>io.projectreactor</groupId>
89 <artifactId>reactor-test</artifactId>
90 <scope>test</scope>
91 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000092 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000093 <build>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050094 <resources>
95 <resource>
96 <!--config and resource files -->
97 <directory>${basedir}/etc</directory>
98 <targetPath>${basedir}/target/etc</targetPath>
99 <filtering>true</filtering>
100 <includes>
101 <include>**/*</include>
102 </includes>
103 </resource>
104 <resource>
105 <!--config and resource files -->
106 <directory>${basedir}/src/main/resources</directory>
107 <targetPath>${basedir}/target/src/main/resources</targetPath>
108 <filtering>true</filtering>
109 <includes>
110 <include>**/*</include>
111 </includes>
112 </resource>
113 <resource>
114 <directory>src/main/resources</directory>
115 <includes>
116 <include>**/*</include>
117 </includes>
118 <filtering>true</filtering>
119 </resource>
120 </resources>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000121 <plugins>
122 <plugin>
123 <groupId>org.springframework.boot</groupId>
124 <artifactId>spring-boot-maven-plugin</artifactId>
125 </plugin>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500126 <plugin>
127 <artifactId>maven-resources-plugin</artifactId>
128 <version>2.6</version>
129 <executions>
130 <execution>
131 <id>copy-dockerfile</id>
132 <goals>
133 <goal>copy-resources</goal>
134 </goals><!-- here the phase you need -->
135 <phase>validate</phase>
136 <configuration>
137 <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
138 <resources>
139 <resource>
140 <directory>src/main/docker</directory>
141 <includes>
142 <include>*</include>
143 </includes>
144 <filtering>true</filtering>
145 </resource>
146 </resources>
147 </configuration>
148 </execution>
149 </executions>
150 </plugin>
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-antrun-plugin</artifactId>
154 <executions>
155 <execution>
156 <id>ant-test</id>
157 <phase>package</phase>
158 <configuration>
159 <tasks>
160 <fixcrlf srcdir="${basedir}" eol="unix" includes="**/*.sh, **/*.source"/>
161 </tasks>
162 </configuration>
163 <goals>
164 <goal>run</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169 <plugin>
170 <artifactId>maven-compiler-plugin</artifactId>
171 <version>3.1</version>
172 <configuration>
173 <!-- <skip>${skip.compile}</skip>-->
174 <source>1.8</source>
175 <target>1.8</target>
176 </configuration>
177 </plugin>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000178 </plugins>
179 </build>
180</project>