Merge "Changed generation of POST operation block"
[yangtools.git] / yang / yang-maven-plugin-spi / 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">
2
3     <parent>
4         <groupId>org.opendaylight.yangtools</groupId>
5         <artifactId>yang</artifactId>
6         <version>0.6.0-SNAPSHOT</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>yang-maven-plugin-spi</artifactId>
11     <name>${project.artifactId}</name>
12     <description>${project.artifactId}</description>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.yangtools</groupId>
17             <artifactId>yang-model-api</artifactId>
18         </dependency>
19
20         <dependency>
21             <groupId>org.apache.maven</groupId>
22             <artifactId>maven-plugin-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.apache.maven</groupId>
26             <artifactId>maven-core</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.sonatype.plexus</groupId>
30             <artifactId>plexus-build-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.codehaus.plexus</groupId>
34             <artifactId>plexus-slf4j-logging</artifactId>
35         </dependency>
36     </dependencies>
37
38     <build>
39         <plugins>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-jar-plugin</artifactId>
43                 <executions>
44                     <execution>
45                         <phase>package</phase>
46                         <goals>
47                             <goal>test-jar</goal>
48                         </goals>
49                     </execution>
50                 </executions>
51             </plugin>
52         </plugins>
53     </build>
54 </project>