Initial code drop of yang model driven configuration system
[controller.git] / opendaylight / config / yang-test / pom.xml
1 <project
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight</groupId>
7         <artifactId>config-subsystem</artifactId>
8         <version>0.2.1-SNAPSHOT</version>
9     </parent>
10
11     <artifactId>yang-test</artifactId>
12
13     <description>Artifact that contains only generated code from yang files. Suitable for testing.
14     </description>
15
16     <dependencies>
17         <dependency>
18             <groupId>${project.groupId}</groupId>
19             <artifactId>config-api</artifactId>
20             <version>0.2.1-SNAPSHOT</version>
21         </dependency>
22         <dependency>
23             <groupId>org.slf4j</groupId>
24             <artifactId>slf4j-api</artifactId>
25         </dependency>
26     </dependencies>
27
28     <name>${project.artifactId}</name>
29     <prerequisites>
30         <maven>3.0.4</maven>
31     </prerequisites>
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yang-maven-plugin</artifactId>
38             </plugin>
39         </plugins>
40     </build>
41 </project>