diff options
author | Claudio D. Gasparini <claudio.gasparini@pantheon.tech> | 2021-02-15 10:38:21 +0100 |
---|---|---|
committer | Claudio D. Gasparini <claudio.gasparini@pantheon.tech> | 2021-02-15 12:02:54 +0100 |
commit | 6364703c2546a3cb9bb35d372a37b09a93bd9975 (patch) | |
tree | 81075604258cd4a6faa38f0b9653614ed44dd9a7 /cps-nf-proxy-service | |
parent | 994c59050730a200d030ade14b768539089576a2 (diff) |
Introduce cps-nf-proxy module
- cps-nf-proxy module: Where NF Service resides
- cps-nf-proxy module-rest: Where NF REST Service resides
Issue-ID: CPS-244
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
Change-Id: Ia6fdf70b004d751d5db092d75de0b7f6fa5f1dd7
Diffstat (limited to 'cps-nf-proxy-service')
-rw-r--r-- | cps-nf-proxy-service/pom.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cps-nf-proxy-service/pom.xml b/cps-nf-proxy-service/pom.xml new file mode 100644 index 0000000000..d32d0ad38a --- /dev/null +++ b/cps-nf-proxy-service/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.cps</groupId> + <artifactId>cps-parent</artifactId> + <version>0.0.1-SNAPSHOT</version> + <relativePath>../cps-parent/pom.xml</relativePath> + </parent> + + <artifactId>cps-nf-proxy-service</artifactId> + + <properties> + <minimum-coverage>0.0</minimum-coverage> + </properties> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-service</artifactId> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-ri</artifactId> + </dependency> + </dependencies> +</project>
\ No newline at end of file |