Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 1 | <!-- |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 2 | ~ 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"> |
Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 23 | |
| 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> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 30 | <artifactId>workflow-designer-parent</artifactId> |
Gildas Lanilis | 67ee0ef | 2018-09-05 16:42:39 -0700 | [diff] [blame^] | 31 | <name>sdc-sdc-workflow-designer</name> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
YuanHu | 77acffc | 2018-02-09 16:13:05 +0800 | [diff] [blame] | 33 | <packaging>pom</packaging> |
Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 34 | |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 35 | <properties> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 36 | <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> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 41 | <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> |
vempo | e0f514c | 2018-07-25 17:27:49 +0300 | [diff] [blame] | 47 | <staging.profile.id>176c31dfe190a</staging.profile.id> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 48 | </properties> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 49 | |
| 50 | <modules> |
| 51 | <module>workflow-designer-init</module> |
| 52 | <module>workflow-designer-be</module> |
| 53 | <module>workflow-designer-ui</module> |
| 54 | </modules> |
| 55 | |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 56 | <build> |
| 57 | <pluginManagement> |
| 58 | <plugins> |
| 59 | <plugin> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 60 | <groupId>io.fabric8</groupId> |
| 61 | <artifactId>docker-maven-plugin</artifactId> |
vempo | e0f514c | 2018-07-25 17:27:49 +0300 | [diff] [blame] | 62 | <version>0.23.0</version> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 63 | <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> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 89 | </plugin> |
| 90 | </plugins> |
| 91 | </pluginManagement> |
vempo | e0f514c | 2018-07-25 17:27:49 +0300 | [diff] [blame] | 92 | <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> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 99 | <serverId>ecomp-staging</serverId> |
vempo | e0f514c | 2018-07-25 17:27:49 +0300 | [diff] [blame] | 100 | <nexusUrl>${nexus.proxy}</nexusUrl> |
| 101 | <stagingProfileId>${staging.profile.id}</stagingProfileId> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 105 | </build> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 106 | |
| 107 | <repositories> |
| 108 | <repository> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 109 | <id>ecomp-releases</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 110 | <name>Release Repository</name> |
| 111 | <url>${nexus.proxy}/content/repositories/releases/</url> |
| 112 | </repository> |
| 113 | <repository> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 114 | <id>ecomp-snapshots</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 115 | <name>Snapshots Repository</name> |
| 116 | <url>${nexus.proxy}/content/repositories/snapshots/</url> |
| 117 | </repository> |
| 118 | <repository> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 119 | <id>ecomp-public</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 120 | <name>Public Repository</name> |
| 121 | <url>${nexus.proxy}/content/repositories/public/</url> |
| 122 | </repository> |
| 123 | </repositories> |
| 124 | <distributionManagement> |
| 125 | <repository> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 126 | <id>ecomp-releases</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 127 | <name>Release Repository</name> |
| 128 | <url>${nexus.proxy}/content/repositories/releases/</url> |
| 129 | </repository> |
| 130 | <snapshotRepository> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 131 | <id>ecomp-snapshots</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 132 | <name>Snapshot Repository</name> |
| 133 | <url>${nexus.proxy}/content/repositories/snapshots/</url> |
| 134 | </snapshotRepository> |
| 135 | <site> |
vempo | b4e1091 | 2018-07-26 12:10:37 +0300 | [diff] [blame] | 136 | <id>ecomp-site</id> |
vempo | a52d50e | 2018-07-24 17:34:04 +0300 | [diff] [blame] | 137 | <url>dav:${nexus.proxy}${sitePath}</url> |
| 138 | </site> |
| 139 | </distributionManagement> |
| 140 | |
| 141 | </project> |