Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[yangtools.git] / restconf / restconf-test-service / pom.xml
1 <?xml version="1.0"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
11     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12   <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.yangtools</groupId>
16         <artifactId>restconf-parent</artifactId>
17         <version>0.7.0-SNAPSHOT</version>
18     </parent>
19
20     <artifactId>restconf-test-service</artifactId>
21   <dependencies>
22       <dependency>
23           <groupId>org.opendaylight.yangtools</groupId>
24           <artifactId>yang-common</artifactId>
25       </dependency>
26       <dependency>
27           <groupId>org.opendaylight.yangtools</groupId>
28           <artifactId>yang-binding</artifactId>
29       </dependency>
30   </dependencies>
31   <packaging>jar</packaging>
32     <build>
33     <plugins>
34     <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37         <extensions>true</extensions>
38     </plugin>
39 <!--    <plugin>
40         <groupId>org.opendaylight.yangtools</groupId>
41         <artifactId>yang-maven-plugin</artifactId>
42         <version>${project.version}</version>
43         <executions>
44             <execution>
45                 <id>sal-remote</id>
46                 <goals>
47                     <goal>generate-sources</goal>
48                 </goals>
49                 <configuration>
50                     <yangFilesRootDir>src/main/yang</yangFilesRootDir>
51                     <codeGenerators>
52                         <generator>
53                             <codeGeneratorClass>
54                                 org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
55                             </codeGeneratorClass>
56                             <outputBaseDir>
57                                 target/generated-sources/
58                             </outputBaseDir>
59                         </generator>
60                         <generator>
61                             <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
62                             <outputBaseDir>target/site/models</outputBaseDir>
63                         </generator>
64                     </codeGenerators>
65                     <inspectDependencies>true</inspectDependencies>
66                 </configuration>
67             </execution>
68         </executions>
69         <dependencies>
70             <dependency>
71                 <groupId>org.opendaylight.yangtools</groupId>
72                 <artifactId>maven-sal-api-gen-plugin</artifactId>
73                 <version>${project.version}</version>
74                 <type>jar</type>
75             </dependency>
76         </dependencies>
77     </plugin> -->
78     </plugins>
79     </build>
80 </project>