diff options
author | Smokowski, Kevin (ks6305) <kevin.smokowski@att.com> | 2019-03-28 14:45:52 +0000 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-04-01 17:50:20 -0700 |
commit | 6a91fa496b5464a9f96b43851968eee4c837d80c (patch) | |
tree | 5cd937594f1ec5773047bfaf83f7af479602bcb8 /message-router/publisher/features/pom.xml | |
parent | 1ad078b3b6741e6109510eb7cbe921d62b34a794 (diff) |
message router publisher changes
resolve message router publisher namespace issues
Resolve issues loading message-router in odlsli container
Change-Id: Ib36bced43129c735c61d5ff7bb0cf29362bb7779
Issue-ID: CCSDK-1186
Signed-off-by: Smokowski, Kevin (ks6305) <kevin.smokowski@att.com>
Diffstat (limited to 'message-router/publisher/features/pom.xml')
-rw-r--r--[-rwxr-xr-x] | message-router/publisher/features/pom.xml | 81 |
1 files changed, 28 insertions, 53 deletions
diff --git a/message-router/publisher/features/pom.xml b/message-router/publisher/features/pom.xml index 7b1c7bed..45e1f5d8 100755..100644 --- a/message-router/publisher/features/pom.xml +++ b/message-router/publisher/features/pom.xml @@ -1,58 +1,33 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- ============LICENSE_START======================================================= + ONAP : APPC ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. ================================================================================ + Copyright (C) 2017 Amdocs ============================================================================= + 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. ECOMP is + a trademark and service mark of AT&T Intellectual Property. ============LICENSE_END========================================================= --> <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> + <modelVersion>4.0.0</modelVersion> + <parent> + <artifactId>odlparent-lite</artifactId> + <groupId>org.onap.ccsdk.parent</groupId> + <version>1.2.2-SNAPSHOT</version> + <relativePath/> + </parent> + <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId> + <artifactId>publisher.features</artifactId> + <version>0.4.2-SNAPSHOT</version> + <name>ccsdk-sli-adaptors :: messagerouter :: ${project.artifactId}</name> - <parent> - <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId> - <artifactId>publisher.aggregate</artifactId> - <version>0.4.2-SNAPSHOT</version> - </parent> + <packaging>pom</packaging> - <artifactId>publisher.features</artifactId> - <packaging>pom</packaging> - - <build> - <resources> - <resource> - <directory>src/main/feature</directory> - <filtering>true</filtering> - <targetPath>${project.build.directory}/feature</targetPath> - </resource> - </resources> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-resources-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>resources</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>build-helper-maven-plugin</artifactId> - <executions> - <execution> - <id>attach-artifacts</id> - <phase>package</phase> - <goals> - <goal>attach-artifact</goal> - </goals> - <configuration> - <artifacts> - <artifact> - <file>target/feature/feature.xml</file> - <type>xml</type> - <classifier>features</classifier> - </artifact> - </artifacts> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> + <modules> + <module>ccsdk-messagerouter-publisher</module> + <module>features-messagerouter-publisher</module> + </modules> </project> |