blob: 498f226754cfcf91961d6d135ce7879599c9be3b [file] [log] [blame]
Lvbo163f721b1a2017-08-23 17:27:33 +08001<!--
vempoa52d50e2018-07-24 17:34:04 +03002 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
17<project
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Lvbo163f721b1a2017-08-23 17:27:33 +080021
22 <modelVersion>4.0.0</modelVersion>
vempob4e10912018-07-26 12:10:37 +030023
24 <!--
25 The groupId violates Maven naming conventions
26 (https://maven.apache.org/guides/mini/guide-naming-conventions.html)
27 because of a limitation of ONAP CI/CD infrastructure.
28 -->
29 <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
vempoa52d50e2018-07-24 17:34:04 +030030 <artifactId>workflow-designer-parent</artifactId>
Gildas Lanilis67ee0ef2018-09-05 16:42:39 -070031 <name>sdc-sdc-workflow-designer</name>
vempoa52d50e2018-07-24 17:34:04 +030032 <version>1.3.0-SNAPSHOT</version>
YuanHu77acffc2018-02-09 16:13:05 +080033 <packaging>pom</packaging>
Lvbo163f721b1a2017-08-23 17:27:33 +080034
Lvbo163091eb472017-09-15 17:36:41 +080035 <properties>
vempoa52d50e2018-07-24 17:34:04 +030036 <maven.compiler.source>1.8</maven.compiler.source>
37 <maven.compiler.target>1.8</maven.compiler.target>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
40 <onap.version>1.3.0-SNAPSHOT</onap.version>
vempoa52d50e2018-07-24 17:34:04 +030041 <docker.optimize>true</docker.optimize>
42 <docker.username>docker</docker.username>
43 <docker.password>docker</docker.password>
44 <nexus.registry>nexus3.onap.org:10001</nexus.registry>
45 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
46 <sitePath>/content/sites/site/org/onap/sdc/workflow/${project.version}</sitePath>
vempoe0f514c2018-07-25 17:27:49 +030047 <staging.profile.id>176c31dfe190a</staging.profile.id>
Lvbo163091eb472017-09-15 17:36:41 +080048 </properties>
vempoa52d50e2018-07-24 17:34:04 +030049
50 <modules>
51 <module>workflow-designer-init</module>
52 <module>workflow-designer-be</module>
53 <module>workflow-designer-ui</module>
54 </modules>
55
Lvbo163091eb472017-09-15 17:36:41 +080056 <build>
57 <pluginManagement>
58 <plugins>
59 <plugin>
vempoa52d50e2018-07-24 17:34:04 +030060 <groupId>io.fabric8</groupId>
61 <artifactId>docker-maven-plugin</artifactId>
vempoe0f514c2018-07-25 17:27:49 +030062 <version>0.23.0</version>
vempoa52d50e2018-07-24 17:34:04 +030063 <configuration>
64 <verbose>false</verbose>
65 <registry>${nexus.registry}</registry>
66 <authConfig>
67 <pull>
68 <username>${docker.username}</username>
69 <password>${docker.password}</password>
70 </pull>
71 </authConfig>
72 </configuration>
73 <executions>
74 <execution>
75 <id>docker-build</id>
76 <phase>install</phase>
77 <goals>
78 <goal>build</goal>
79 </goals>
80 </execution>
81 <execution>
82 <id>push-images</id>
83 <phase>deploy</phase>
84 <goals>
85 <goal>push</goal>
86 </goals>
87 </execution>
88 </executions>
Lvbo163091eb472017-09-15 17:36:41 +080089 </plugin>
90 </plugins>
91 </pluginManagement>
vempoe0f514c2018-07-25 17:27:49 +030092 <plugins>
93 <plugin>
94 <groupId>org.sonatype.plugins</groupId>
95 <artifactId>nexus-staging-maven-plugin</artifactId>
96 <version>1.6.8</version>
97 <extensions>true</extensions>
98 <configuration>
vempob4e10912018-07-26 12:10:37 +030099 <serverId>ecomp-staging</serverId>
vempoe0f514c2018-07-25 17:27:49 +0300100 <nexusUrl>${nexus.proxy}</nexusUrl>
101 <stagingProfileId>${staging.profile.id}</stagingProfileId>
102 </configuration>
103 </plugin>
104 </plugins>
Lvbo163091eb472017-09-15 17:36:41 +0800105 </build>
vempoa52d50e2018-07-24 17:34:04 +0300106
107 <repositories>
108 <repository>
vempob4e10912018-07-26 12:10:37 +0300109 <id>ecomp-releases</id>
vempoa52d50e2018-07-24 17:34:04 +0300110 <name>Release Repository</name>
111 <url>${nexus.proxy}/content/repositories/releases/</url>
112 </repository>
113 <repository>
vempob4e10912018-07-26 12:10:37 +0300114 <id>ecomp-snapshots</id>
vempoa52d50e2018-07-24 17:34:04 +0300115 <name>Snapshots Repository</name>
116 <url>${nexus.proxy}/content/repositories/snapshots/</url>
117 </repository>
118 <repository>
vempob4e10912018-07-26 12:10:37 +0300119 <id>ecomp-public</id>
vempoa52d50e2018-07-24 17:34:04 +0300120 <name>Public Repository</name>
121 <url>${nexus.proxy}/content/repositories/public/</url>
122 </repository>
123 </repositories>
124 <distributionManagement>
125 <repository>
vempob4e10912018-07-26 12:10:37 +0300126 <id>ecomp-releases</id>
vempoa52d50e2018-07-24 17:34:04 +0300127 <name>Release Repository</name>
128 <url>${nexus.proxy}/content/repositories/releases/</url>
129 </repository>
130 <snapshotRepository>
vempob4e10912018-07-26 12:10:37 +0300131 <id>ecomp-snapshots</id>
vempoa52d50e2018-07-24 17:34:04 +0300132 <name>Snapshot Repository</name>
133 <url>${nexus.proxy}/content/repositories/snapshots/</url>
134 </snapshotRepository>
135 <site>
vempob4e10912018-07-26 12:10:37 +0300136 <id>ecomp-site</id>
vempoa52d50e2018-07-24 17:34:04 +0300137 <url>dav:${nexus.proxy}${sitePath}</url>
138 </site>
139 </distributionManagement>
140
141</project>