Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | /** |
| 4 | * Copyright (c) 2017 ZTE Corporation. |
| 5 | * All rights reserved. This program and the accompanying materials |
| 6 | * are made available under the terms of the Eclipse Public License v1.0 |
| 7 | * and the Apache License 2.0 which both accompany this distribution, |
| 8 | * and are available at http://www.eclipse.org/legal/epl-v10.html |
| 9 | * and http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Contributors: |
| 12 | * ZTE - initial API and implementation and/or initial documentation |
| 13 | */ |
| 14 | --> |
| 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 17 | <parent> |
| 18 | <groupId>org.onap.oparent</groupId> |
| 19 | <artifactId>oparent</artifactId> |
Jessica Wagantall | 2b649ec | 2017-11-20 11:00:01 -0800 | [diff] [blame] | 20 | <version>1.1.0-SNAPSHOT</version> |
Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 21 | </parent> |
| 22 | |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <groupId>org.onap.sdc.sdc-workflow-designer</groupId> |
| 25 | <artifactId>sdc-workflow-designer</artifactId> |
| 26 | <packaging>pom</packaging> |
Jessica Wagantall | 2b649ec | 2017-11-20 11:00:01 -0800 | [diff] [blame] | 27 | <version>1.0.1</version> |
Jessica Wagantall | 4aeb99f | 2017-09-08 12:39:38 -0700 | [diff] [blame] | 28 | <name>sdc-sdc-workflow-designer</name> |
Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 29 | |
| 30 | <modules> |
| 31 | <module>sdc-workflow-designer-ui</module> |
Lvbo163 | 2f378c0 | 2017-09-27 17:30:42 +0800 | [diff] [blame] | 32 | <!--<module>sdc-workflow-designer-server</module>--> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 33 | <module>distribution</module> |
Lvbo163 | f721b1a | 2017-08-23 17:27:33 +0800 | [diff] [blame] | 34 | </modules> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 35 | |
| 36 | <properties> |
| 37 | <tomcat.version>8.5.6</tomcat.version> |
HuabingZhao | 8060277 | 2017-10-10 16:30:33 +0800 | [diff] [blame] | 38 | <onap.nexus.javadocs-url>dav:https://nexus.onap.org/content/sites/site/org/onap/sdc/sdc-workflow-designer/${project.version}</onap.nexus.javadocs-url> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 39 | </properties> |
HuabingZhao | 8060277 | 2017-10-10 16:30:33 +0800 | [diff] [blame] | 40 | <distributionManagement> |
| 41 | <site> |
| 42 | <id>ecomp-site</id> |
| 43 | <url>${onap.nexus.javadocs-url}</url> |
| 44 | </site> |
| 45 | </distributionManagement> |
Lvbo163 | 091eb47 | 2017-09-15 17:36:41 +0800 | [diff] [blame] | 46 | |
| 47 | <dependencyManagement> |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.tomcat</groupId> |
| 51 | <artifactId>tomcat</artifactId> |
| 52 | <version>${tomcat.version}</version> |
| 53 | <type>zip</type> |
| 54 | </dependency> |
| 55 | </dependencies> |
| 56 | </dependencyManagement> |
| 57 | |
| 58 | <build> |
| 59 | <pluginManagement> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
| 63 | <artifactId>maven-dependency-plugin</artifactId> |
| 64 | <version>2.10</version> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <artifactId>maven-antrun-plugin</artifactId> |
| 68 | <version>1.8</version> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </pluginManagement> |
| 72 | </build> |
Jessica Wagantall | 4aeb99f | 2017-09-08 12:39:38 -0700 | [diff] [blame] | 73 | </project> |