restructure and base modules for different features
[vpnservice.git] / vpnmanager-impl / pom.xml
index 59cd96d78e6cd1073558b8e4b4a6ca15ac5d9b79..5c87523e361915b53e50f64cda20329ec2491094 100644 (file)
@@ -1,31 +1,57 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- vi: set et smarttab sw=4 tabstop=4: --><!--
-Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
-
-This program and the accompanying materials are made available under the
-terms of the Eclipse Public License v1.0 which accompanies this distribution,
-and is available at http://www.eclipse.org/legal/epl-v10.html
--->
-<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">
-
-  <parent>
-    <groupId>org.opendaylight.controller</groupId>
-    <artifactId>config-parent</artifactId>
-    <version>0.3.0-SNAPSHOT</version>
-    <relativePath/>
-  </parent>
-
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.opendaylight.vpnservice</groupId>
-  <artifactId>vpnmanager-impl</artifactId>
-  <version>1.0-SNAPSHOT</version>
-  <packaging>bundle</packaging>
-  <dependencies>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>vpnmanager-api</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-  </dependencies>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>\r
+<!-- vi: set et smarttab sw=4 tabstop=4: --><!--\r
+Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.\r
+\r
+This program and the accompanying materials are made available under the\r
+terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
+and is available at http://www.eclipse.org/legal/epl-v10.html\r
+-->\r
+<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">\r
+\r
+  <parent>\r
+    <groupId>org.opendaylight.controller</groupId>\r
+    <artifactId>config-parent</artifactId>\r
+    <version>0.3.0-SNAPSHOT</version>\r
+    <relativePath/>\r
+  </parent>\r
+\r
+  <modelVersion>4.0.0</modelVersion>\r
+  <groupId>org.opendaylight.vpnservice</groupId>\r
+  <artifactId>vpnmanager-impl</artifactId>\r
+  <version>0.0.1-SNAPSHOT</version>\r
+  <packaging>bundle</packaging>\r
+  <dependencies>\r
+    <dependency>\r
+      <groupId>${project.groupId}</groupId>\r
+      <artifactId>vpnmanager-api</artifactId>\r
+      <version>${project.version}</version>\r
+    </dependency>\r
+           <!--  TEST Dependencies -->\r
+    <dependency>\r
+      <groupId>junit</groupId>\r
+      <artifactId>junit</artifactId>\r
+    </dependency>\r
+       <dependency>\r
+       <groupId>org.mockito</groupId>\r
+       <artifactId>mockito-all</artifactId>\r
+       <scope>test</scope>\r
+    </dependency>\r
+  </dependencies>\r
+  <build>\r
+    <plugins>\r
+      <plugin>\r
+        <groupId>org.apache.maven.plugins</groupId>\r
+        <artifactId>maven-checkstyle-plugin</artifactId>\r
+        <configuration>\r
+          <configLocation>\r
+            ${project.basedir}/../commons/src/main/resources/vpns_checks.xml\r
+          </configLocation>\r
+          <failsOnError>true</failsOnError>\r
+          <includes>**/*.java,**/*.xml,**/*.ini</includes>\r
+          <excludes>**/yang/</excludes>\r
+        </configuration>\r
+      </plugin>\r
+    </plugins>\r
+  </build>\r
+\r
+</project>\r