Add ModuleFactory#getDefaultModules method to config-api.
[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.controller</groupId>
7         <artifactId>config-subsystem</artifactId>
8         <version>0.2.2-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     <name>${project.artifactId}</name>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20     <dependencies>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>config-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-api</artifactId>
28         </dependency>
29         <dependency>
30          <groupId>org.opendaylight.yangtools.model</groupId>
31          <artifactId>ietf-inet-types</artifactId>
32         </dependency>
33     </dependencies>
34
35
36
37     <build>
38         <plugins>
39             <plugin>
40                 <groupId>org.opendaylight.yangtools</groupId>
41                 <artifactId>yang-maven-plugin</artifactId>
42             </plugin>
43         </plugins>
44     </build>
45 </project>