Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / code-generator / code-generator-demo / pom.xml
1 <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
2   <modelVersion>4.0.0</modelVersion>\r
3   <parent>\r
4     <groupId>org.opendaylight.controller</groupId>\r
5     <artifactId>binding-generator</artifactId>\r
6     <version>1.0</version>\r
7   </parent>\r
8   <artifactId>code-generator-demo</artifactId>\r
9   \r
10   <dependencies>\r
11       <dependency>\r
12           <groupId>org.antlr</groupId>\r
13           <artifactId>antlr4</artifactId>\r
14           <version>4.0</version>\r
15       </dependency>\r
16       <dependency>\r
17           <groupId>org.opendaylight.controller</groupId>\r
18           <artifactId>binding-generator-impl</artifactId>\r
19           <version>1.0</version>\r
20       </dependency>\r
21       <dependency>\r
22           <groupId>org.opendaylight.controller</groupId>\r
23           <artifactId>yang-model-parser-impl</artifactId>\r
24           <version>1.0</version>\r
25       </dependency>\r
26       <dependency>\r
27           <groupId>org.opendaylight.controller</groupId>\r
28           <artifactId>binding-java-api-generator</artifactId>\r
29           <version>1.0</version>\r
30       </dependency>\r
31   </dependencies>\r
32   \r
33   <build>\r
34                 <plugins>\r
35                         <plugin>\r
36                                 <artifactId>maven-assembly-plugin</artifactId>\r
37                                 <version>2.4</version>\r
38                                 <configuration>\r
39                                         <descriptorRefs>\r
40                                                 <descriptorRef>jar-with-dependencies</descriptorRef>\r
41                                         </descriptorRefs>\r
42                                         <archive>\r
43                                                 <manifest>\r
44                                                         <mainClass>org.opendaylight.controller.yang.Demo</mainClass>\r
45                                                 </manifest>\r
46                                         </archive>\r
47                                 </configuration>\r
48                                 <executions>\r
49                                         <execution>\r
50                                                 <id>make-assembly</id>\r
51                                                 <phase>package</phase>\r
52                                                 <goals>\r
53                                                         <goal>single</goal>\r
54                                                 </goals>\r
55                                         </execution>\r
56                                 </executions>\r
57                         </plugin>\r
58 \r
59                 </plugins>\r
60         </build>\r
61 </project>\r
62 \r