5bf730243097e12f0aa7bc06087e65d39eae954f
[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"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yang</artifactId>
7         <version>0.5.8-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>yang-maven-plugin-spi</artifactId>
12     <name>${project.artifactId}</name>
13     <description>${project.artifactId}</description>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.yangtools</groupId>
18             <artifactId>yang-model-api</artifactId>
19         </dependency>
20
21         <dependency>
22             <groupId>org.apache.maven</groupId>
23             <artifactId>maven-plugin-api</artifactId>
24             <version>3.0.5</version>
25         </dependency>
26         <dependency>
27             <groupId>org.apache.maven</groupId>
28             <artifactId>maven-core</artifactId>
29             <version>3.0.5</version>
30         </dependency>
31     </dependencies>
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.apache.maven.plugins</groupId>
37                 <artifactId>maven-jar-plugin</artifactId>
38                 <version>2.4</version>
39                 <configuration>
40                     <archive>
41                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
42                     </archive>
43                 </configuration>
44                 <executions>
45                     <execution>
46                         <phase>package</phase>
47                         <goals>
48                             <goal>test-jar</goal>
49                         </goals>
50                     </execution>
51                 </executions>
52             </plugin>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56                 <executions>
57                     <execution>
58                         <id>bundle-manifest</id>
59                         <phase>process-classes</phase>
60                         <goals>
61                             <goal>manifest</goal>
62                         </goals>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67     </build>
68
69 </project>