Bump versions by x.y.(z+1)
[netconf.git] / netconf / shaded-exificient / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>6.0.4</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>shaded-exificient</artifactId>
21     <packaging>bundle</packaging>
22     <version>1.9.0-SNAPSHOT</version>
23     <name>${project.artifactId}</name>
24
25     <properties>
26         <!-- We are just juggling classes here -->
27         <odlparent.modernizer.skip>true</odlparent.modernizer.skip>
28         <odlparent.spotbugs.skip>true</odlparent.spotbugs.skip>
29     </properties>
30
31     <dependencies>
32         <dependency>
33             <groupId>org.opendaylight.netconf</groupId>
34             <artifactId>shaded-exificient-jar</artifactId>
35             <version>1.9.0-SNAPSHOT</version>
36             <scope>provided</scope>
37         </dependency>
38     </dependencies>
39
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.apache.maven.plugins</groupId>
44                 <artifactId>maven-dependency-plugin</artifactId>
45                 <executions>
46                     <execution>
47                         <id>unpack</id>
48                         <phase>compile</phase>
49                         <goals>
50                             <goal>unpack</goal>
51                         </goals>
52                         <configuration>
53                             <artifactItems>
54                                 <artifactItem>
55                                     <groupId>org.opendaylight.netconf</groupId>
56                                     <artifactId>shaded-exificient-jar</artifactId>
57                                     <version>${project.version}</version>
58                                 </artifactItem>
59                             </artifactItems>
60                             <overWriteReleases>false</overWriteReleases>
61                             <overWriteSnapshots>true</overWriteSnapshots>
62                             <outputDirectory>${project.build.directory}/classes</outputDirectory>
63                         </configuration>
64                     </execution>
65                 </executions>
66             </plugin>
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>build-helper-maven-plugin</artifactId>
70                 <executions>
71                     <execution>
72                         <phase>generate-sources</phase>
73                         <goals>
74                             <goal>add-source</goal>
75                         </goals>
76                         <configuration>
77                             <sources>
78                                 <source>${project.build.directory}/generated-sources</source>
79                             </sources>
80                         </configuration>
81                     </execution>
82                 </executions>
83             </plugin>
84             <plugin>
85                 <groupId>org.apache.felix</groupId>
86                 <artifactId>maven-bundle-plugin</artifactId>
87                 <extensions>true</extensions>
88                 <configuration>
89                     <instructions>
90                         <Import-Package>
91                             sun.io;resolution:=optional,
92                             *
93                         </Import-Package>
94                         <Export-Package>
95                             org.opendaylight.netconf.shaded.*
96                         </Export-Package>
97                     </instructions>
98                 </configuration>
99             </plugin>
100         </plugins>
101     </build>
102 </project>