diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2016-09-01 16:33:32 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2016-09-01 17:42:42 -0700 |
commit | f8c8cebc21ea8afce63472d66b57a2c83f21d9f7 (patch) | |
tree | b159297842afb13860b1fa497d7bf3ddd47b336c /msb-parent/msbparent/pom.xml | |
parent | 8597cf5e116012c038e83f763a816ca106cad4d2 (diff) |
Change artifact groupId to allow Nexus deployment
Change-Id: I78af2ba519302a02057fa2ad34cdbd76e7ea0f77
Issue-id: INT-40
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'msb-parent/msbparent/pom.xml')
-rw-r--r-- | msb-parent/msbparent/pom.xml | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/msb-parent/msbparent/pom.xml b/msb-parent/msbparent/pom.xml index 4f03c5e..61e0079 100644 --- a/msb-parent/msbparent/pom.xml +++ b/msb-parent/msbparent/pom.xml @@ -1,34 +1,33 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- 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 - + 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. - + --> <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> <parent> - <groupId>org.openo.msb</groupId> + <groupId>org.openo.common-services.microservice-bus</groupId> <artifactId>msbparent-lite</artifactId> - <version>1.0.0</version> + <version>1.0.0-SNAPSHOT</version> <relativePath>../msbparent-lite</relativePath> </parent> - <groupId>org.openo.msb</groupId> <artifactId>msbparent</artifactId> <packaging>pom</packaging> - <name>msbparent</name> + <name>msbparent</name> <scm> @@ -42,7 +41,7 @@ <properties> <!-- Supporting Libraries --> <dropwizard.version>0.8.0</dropwizard.version> - <swagger.version>1.5.3</swagger.version> + <swagger.version>1.5.3</swagger.version> <jedis.version>2.7.3</jedis.version> <lombok.version>1.16.4</lombok.version> <json-lib.version>2.4</json-lib.version> @@ -77,7 +76,7 @@ <groupId>io.dropwizard</groupId> <artifactId>dropwizard-client</artifactId> <version>${dropwizard.version}</version> - </dependency> + </dependency> <dependency> <groupId>io.swagger</groupId> @@ -90,17 +89,17 @@ <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>${jedis.version}</version> - </dependency> + </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> - <dependency> - <groupId>net.sf.json-lib</groupId> - <artifactId>json-lib</artifactId> - <version>${json-lib.version}</version> - </dependency> + <dependency> + <groupId>net.sf.json-lib</groupId> + <artifactId>json-lib</artifactId> + <version>${json-lib.version}</version> + </dependency> </dependencies> </dependencyManagement> @@ -172,5 +171,5 @@ </plugin> </plugins> </build> - + </project> |