diff options
Diffstat (limited to 'configbackuprestore/pom.xml')
-rw-r--r-- | configbackuprestore/pom.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/configbackuprestore/pom.xml b/configbackuprestore/pom.xml new file mode 100644 index 00000000..5b01a9cb --- /dev/null +++ b/configbackuprestore/pom.xml @@ -0,0 +1,36 @@ +<?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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.onap.ccsdk.parent</groupId> + <artifactId>configbackuprestore</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Archetype - configbackuprestore</name> + <packaging>pom</packaging> + + <parent> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>1.5.4.RELEASE</version> + </parent> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> + + + + <modules> + <module>getBackupVnfDetailService</module> + </modules> + + +</project> |