BUG-997 Use shared schema context factory in netconf-connector
[controller.git] / features / config-persister / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8     <relativePath>../../opendaylight/config/</relativePath>
9   </parent>
10   <artifactId>config-persister-features</artifactId>
11
12   <packaging>pom</packaging>
13
14   <properties>
15     <features.file>features.xml</features.file>
16   </properties>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.yangtools</groupId>
21       <artifactId>features-yangtools</artifactId>
22       <version>${yangtools.version}</version>
23       <classifier>features</classifier>
24       <type>xml</type>
25       <scope>runtime</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>netconf-features</artifactId>
30       <classifier>features</classifier>
31       <type>xml</type>
32       <scope>runtime</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>config-features</artifactId>
37       <classifier>features</classifier>
38       <type>xml</type>
39       <scope>runtime</scope>
40     </dependency>
41   </dependencies>
42
43   <build>
44     <resources>
45       <resource>
46         <filtering>true</filtering>
47         <directory>src/main/resources</directory>
48       </resource>
49     </resources>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-resources-plugin</artifactId>
54         <executions>
55           <execution>
56             <id>filter</id>
57             <goals>
58               <goal>resources</goal>
59             </goals>
60             <phase>generate-resources</phase>
61           </execution>
62         </executions>
63       </plugin>
64       <plugin>
65         <groupId>org.codehaus.mojo</groupId>
66         <artifactId>build-helper-maven-plugin</artifactId>
67         <executions>
68           <execution>
69             <id>attach-artifacts</id>
70             <goals>
71               <goal>attach-artifact</goal>
72             </goals>
73             <phase>package</phase>
74             <configuration>
75               <artifacts>
76                 <artifact>
77                   <file>${project.build.directory}/classes/${features.file}</file>
78                   <type>xml</type>
79                   <classifier>features</classifier>
80                 </artifact>
81               </artifacts>
82             </configuration>
83           </execution>
84         </executions>
85       </plugin>
86     </plugins>
87   </build>
88   <scm>
89     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
91     <tag>HEAD</tag>
92     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
93   </scm>
94 </project>