Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / code-generator / code-generator-demo / pom.xml
diff --git a/opendaylight/sal/yang-prototype/code-generator/code-generator-demo/pom.xml b/opendaylight/sal/yang-prototype/code-generator/code-generator-demo/pom.xml
new file mode 100644 (file)
index 0000000..dfa23fa
--- /dev/null
@@ -0,0 +1,62 @@
+<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
+  <modelVersion>4.0.0</modelVersion>\r
+  <parent>\r
+    <groupId>org.opendaylight.controller</groupId>\r
+    <artifactId>binding-generator</artifactId>\r
+    <version>1.0</version>\r
+  </parent>\r
+  <artifactId>code-generator-demo</artifactId>\r
+  \r
+  <dependencies>\r
+      <dependency>\r
+          <groupId>org.antlr</groupId>\r
+          <artifactId>antlr4</artifactId>\r
+          <version>4.0</version>\r
+      </dependency>\r
+      <dependency>\r
+          <groupId>org.opendaylight.controller</groupId>\r
+          <artifactId>binding-generator-impl</artifactId>\r
+          <version>1.0</version>\r
+      </dependency>\r
+      <dependency>\r
+          <groupId>org.opendaylight.controller</groupId>\r
+          <artifactId>yang-model-parser-impl</artifactId>\r
+          <version>1.0</version>\r
+      </dependency>\r
+      <dependency>\r
+          <groupId>org.opendaylight.controller</groupId>\r
+          <artifactId>binding-java-api-generator</artifactId>\r
+          <version>1.0</version>\r
+      </dependency>\r
+  </dependencies>\r
+  \r
+  <build>\r
+               <plugins>\r
+                       <plugin>\r
+                               <artifactId>maven-assembly-plugin</artifactId>\r
+                               <version>2.4</version>\r
+                               <configuration>\r
+                                       <descriptorRefs>\r
+                                               <descriptorRef>jar-with-dependencies</descriptorRef>\r
+                                       </descriptorRefs>\r
+                                       <archive>\r
+                                               <manifest>\r
+                                                       <mainClass>org.opendaylight.controller.yang.Demo</mainClass>\r
+                                               </manifest>\r
+                                       </archive>\r
+                               </configuration>\r
+                               <executions>\r
+                                       <execution>\r
+                                               <id>make-assembly</id>\r
+                                               <phase>package</phase>\r
+                                               <goals>\r
+                                                       <goal>single</goal>\r
+                                               </goals>\r
+                                       </execution>\r
+                               </executions>\r
+                       </plugin>\r
+\r
+               </plugins>\r
+       </build>\r
+</project>\r
+\r