Merge "BUG-509: use dedicated executor for notifications"
[controller.git] / opendaylight / config / yang-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <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">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.2.5-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11
12   <artifactId>yang-test</artifactId>
13   <packaging>bundle</packaging>
14   <name>${project.artifactId}</name>
15
16   <description>Artifact that contains only generated code from yang files. Suitable for testing.</description>
17   <prerequisites>
18     <maven>3.0.4</maven>
19   </prerequisites>
20
21   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>config-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>mockito-configuration</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools.model</groupId>
32       <artifactId>ietf-inet-types</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.slf4j</groupId>
36       <artifactId>slf4j-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>config-manager</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>config-manager</artifactId>
46       <type>test-jar</type>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>config-util</artifactId>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60
61   <build>
62     <pluginManagement>
63       <plugins>
64         <plugin>
65           <groupId>org.eclipse.m2e</groupId>
66           <artifactId>lifecycle-mapping</artifactId>
67           <version>1.0.0</version>
68           <configuration>
69             <lifecycleMappingMetadata>
70               <pluginExecutions>
71                 <pluginExecution>
72                   <pluginExecutionFilter>
73                     <groupId>org.opendaylight.controller</groupId>
74                     <artifactId>yang-test-plugin</artifactId>
75                     <versionRange>[0.2.3,)</versionRange>
76                     <goals>
77                       <goal>delete-sources</goal>
78                       <goal>process-sources</goal>
79                     </goals>
80                   </pluginExecutionFilter>
81                   <action>
82                     <ignore></ignore>
83                   </action>
84                 </pluginExecution>
85               </pluginExecutions>
86             </lifecycleMappingMetadata>
87           </configuration>
88         </plugin>
89       </plugins>
90     </pluginManagement>
91
92     <plugins>
93
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <configuration>
98           <instructions></instructions>
99         </configuration>
100       </plugin>
101
102       <plugin>
103         <groupId>org.opendaylight.controller</groupId>
104         <artifactId>yang-test-plugin</artifactId>
105         <version>${config.version}</version>
106         <executions>
107           <execution>
108             <goals>
109               <goal>delete-sources</goal>
110
111               <goal>process-sources</goal>
112             </goals>
113           </execution>
114         </executions>
115       </plugin>
116       <plugin>
117         <groupId>org.opendaylight.yangtools</groupId>
118         <artifactId>yang-maven-plugin</artifactId>
119       </plugin>
120     </plugins>
121   </build>
122 </project>