Reworked pom files
[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.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         <dependency>
27          <groupId>org.opendaylight.yangtools.model</groupId>
28          <artifactId>ietf-inet-types</artifactId>
29         </dependency>
30     </dependencies>
31
32     <name>${project.artifactId}</name>
33     <prerequisites>
34         <maven>3.0.4</maven>
35     </prerequisites>
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>