aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorHuabingZhao <zhao.huabing@zte.com.cn>2017-07-25 15:18:33 +0800
committerHuabingZhao <zhao.huabing@zte.com.cn>2017-07-25 18:11:59 +0800
commit672f3d40be83d9e380fd7be4b674d5e8d5fa36de (patch)
tree43105e1d5e2ba8e8accea8648e57e1cf87db3f00 /pom.xml
parent41d3db15a8e1a0496f9c2a5e15db2998a32bb9bf (diff)
Divide the MSB source codes into two repos
Change-Id: Ie76d545b214a8ce5191f215350a623e1529983d9 Issue-id: MSB-5 Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml196
1 files changed, 170 insertions, 26 deletions
diff --git a/pom.xml b/pom.xml
index f5defc1..8cb38b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,44 +1,188 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
-
- Copyright 2016 ZTE Corporation.
-
+ Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+
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
-
+
+ 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.
-
- Author: Zhaoxing Meng
- email: meng.zhaoxing1@zte.com.cn
-
+
-->
<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>
+
+ <groupId>org.onap.msb.apigateway</groupId>
+ <artifactId>msb-apigateway-parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>onap/msb/msb-apigateway-parent</name>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+
+ <openresty.version>1.11.2.2</openresty.version>
+ <openresty-windows.version>1.11.9.1001</openresty-windows.version>
+
+ <redis.version>3.2.6</redis.version>
+ <redis-windows.version>3.2.100</redis-windows.version>
+
+ <classifier.win32>windows_386</classifier.win32>
+ <classifier.win64>windows_amd64</classifier.win64>
+ <classifier.linux64>linux_amd64</classifier.linux64>
+
+ <linux64outputdir>target/assembly/${classifier.linux64}/</linux64outputdir>
+ <win32outputdir>target/assembly/${classifier.win32}/</win32outputdir>
+ <win64outputdir>target/assembly/${classifier.win64}/</win64outputdir>
+
+ <dockerFileDir>src/main/docker</dockerFileDir>
+ <blueprintFileDir>src/main/blueprint</blueprintFileDir>
+ <version.output>target/version</version.output>
+
+ </properties>
+
+ <modules>
+ <module>apiroute</module>
+ <module>openresty-ext</module>
+ <module>redis-ext</module>
+ <module>distributions</module>
+ </modules>
+
+<!-- <distributionManagement>
+ <repository>
+ <id>releases</id>
+ <url>${nexus.repository.release}</url>
+ </repository>
+ <snapshotRepository>
+ <id>snapshots</id>
+ <url>${nexus.repository.snapshot}</url>
+ </snapshotRepository>
+ </distributionManagement> -->
+
+<!-- <profiles>
+ <profile>
+ <id>linux</id>
+ <properties>
+ <env.separator>:</env.separator>
+ </properties>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ </profile>
+ <profile>
+ <id>windows</id>
+ <properties>
+ <env.separator>;</env.separator>
+ </properties>
+ </profile>
+ </profiles> -->
+
+ <build>
+<!-- <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ssh</artifactId>
+ <version>2.10</version>
+ </extension>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ftp</artifactId>
+ <version>2.10</version>
+ </extension>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>2.10</version>
+ </extension>
+ </extensions> -->
+ <resources>
+ <resource>
+ <filtering>false</filtering>
+ <directory>src/main/resources</directory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </resource>
+ <resource>
+ <filtering>true</filtering>
+ <directory>src/main/filters</directory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </resource>
+ </resources>
+
+ <pluginManagement>
+ <plugins>
+ <!-- Official maven plugins, alpha-sorted by artifactId.
+ We do not need to specify the groupId. -->
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.8</version>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.6.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.5.2</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8.2</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.10</version>
+ </plugin>
+
+
+<!-- <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-plugin-plugin</artifactId>
+ <version>${maven.plugin.version}</version>
+ </plugin> -->
- <modelVersion>4.0.0</modelVersion>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
- <parent>
- <groupId>org.openo.common-services.microservice-bus</groupId>
- <artifactId>msbparent</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <relativePath>msb-parent/msbparent</relativePath>
- </parent>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.9.1</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>${maven.surefire.version}</version>
+ <configuration>
+ <forkCount>3</forkCount>
+ <reuseForks>true</reuseForks>
+ <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </pluginManagement>
+ </build>
+
- <artifactId>msb-core-root</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <name>common-services-microservice-bus</name>
- <packaging>pom</packaging>
+</project>
- <modules>
- <module>msb-parent</module>
- <module>msb-core</module>
- </modules>
- </project>