summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorAvinashS <avinash.s@huawei.com>2017-09-07 13:46:54 +0000
committerAvinash S <avinash.s@huawei.com>2017-09-07 14:07:16 +0000
commit3c4d26e6442babc0b09bc74082bd68108484d275 (patch)
treec1eea9c391915ee7593025065239887920a41658 /pom.xml
parentf66e77c8571f851cdd31428809710cff4020b503 (diff)
VNF Validation seed code
Skeleton structure Reorganised code with tool as a jar for csar validation as an initial step. Change-Id: Ie5895c885872fb186f2acd8c8bb0f823210e906f IssueId: VNFSDK-76 Signed-off-by: AvinashS <avinash.s@huawei.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..d20d11f
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,64 @@
+<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">
+ <parent>
+ <groupId>org.onap.oparent</groupId>
+ <artifactId>oparent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>oparent</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.onap.vnfsdk.validation</groupId>
+ <artifactId>validation</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <name>validation</name>
+ <packaging>pom</packaging>
+
+ <scm>
+ <tag>HEAD</tag>
+ </scm>
+
+ <modules>
+ <module>csarvalidation</module>
+ <module>deployment</module>
+ </modules>
+
+ <build>
+ <finalName>ROOT</finalName>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.0.2</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+ <description>Validation project to validate TOSCA CSARs for ONAP
+ project. Currently this project is used by vnfsdk project under ON</description>
+</project>