diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 15:50:29 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 15:50:29 -0400 |
commit | 153b6c24886820f7f6fa1d160551f292eb4e6948 (patch) | |
tree | a6f351533cbf745c08f71c718f3b697d8ef5650e /features/features-sli-adaptors | |
parent | be72a3cd156210d0e3f8fe3a0cd16993b32c248f (diff) |
Add feature aggregator
Add feature aggregator ccsdk-sli-adaptors-all to install all adaptor
features.
Change-Id: I8e0fa515a18f62a5ca0530d79a1334942c71e5e0
Issue-ID: CCSDK-281
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
Diffstat (limited to 'features/features-sli-adaptors')
-rw-r--r-- | features/features-sli-adaptors/pom.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/features/features-sli-adaptors/pom.xml b/features/features-sli-adaptors/pom.xml new file mode 100644 index 00000000..de1b9b8d --- /dev/null +++ b/features/features-sli-adaptors/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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.onap.ccsdk.parent</groupId> + <artifactId>feature-repo-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath/> + </parent> + + <groupId>org.onap.ccsdk.sli.adaptors</groupId> + <artifactId>features-sli-adaptors</artifactId> + <version>0.3.0-SNAPSHOT</version> + <packaging>feature</packaging> + + <name>ccsdk-sli-adaptors :: features :: ${project.artifactId}</name> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ccsdk-sli-adaptors-all</artifactId> + <version>${project.version}</version> + <type>xml</type> + <classifier>features</classifier> + </dependency> + + </dependencies> +</project> |