Incrementing versions by 0.0.1 for post-helium master branch
[dlux.git] / bundles / general / 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.dlux</groupId>
6     <artifactId>bundles</artifactId>
7     <version>0.2.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <groupId>org.opendaylight.dlux</groupId>
11   <artifactId>dlux.common.general</artifactId>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>org.osgi</groupId>
16       <artifactId>org.osgi.core</artifactId>
17       <version>5.0.0</version>
18     </dependency>
19     <dependency>
20       <groupId>org.osgi</groupId>
21       <artifactId>org.osgi.compendium</artifactId>
22       <version>4.2.0</version>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.felix</groupId>
26       <artifactId>org.osgi.compendium</artifactId>
27       <version>1.4.0</version>
28     </dependency>
29     <dependency>
30       <groupId>org.slf4j</groupId>
31       <artifactId>jcl-over-slf4j</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.dlux</groupId>
35       <artifactId>loader</artifactId>
36       <version>1.1.0-SNAPSHOT</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.dlux</groupId>
40       <artifactId>dlux.common.general.resources</artifactId>
41       <version>${core.resources.version}</version>
42     </dependency>
43   </dependencies>
44  <build>
45    <resources>
46       <resource>
47         <directory>target/generated-resources</directory>
48       </resource>
49       <resource>
50         <directory>src/main/resources</directory>
51       </resource>
52     </resources>
53     <plugins>
54      <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-dependency-plugin</artifactId>
57         <version>2.6</version>
58         <executions>
59      <!--loader Resources-->
60           <execution>
61             <id>unpack-loader-resources</id>
62             <goals>
63               <goal>unpack-dependencies</goal>
64             </goals>
65             <phase>generate-resources</phase>
66             <configuration>
67               <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
68               <groupId>org.opendaylight.dlux</groupId>
69               <includeArtifactIds>dlux.common.general.resources</includeArtifactIds>
70               <excludes>META-INF\/**</excludes>
71               <excludeTransitive>true</excludeTransitive>
72               <ignorePermissions>false</ignorePermissions>
73             </configuration>
74           </execution>
75         </executions>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.felix</groupId>
79         <artifactId>maven-bundle-plugin</artifactId>
80         <extensions>true</extensions>
81         <configuration>
82           <instructions>
83             <Import-Package>org.osgi.service.http,
84                             org.osgi.framework;version="1.0.0",
85                             org.opendaylight.dlux.loader,
86                             org.slf4j
87             </Import-Package>
88             <Export-Package></Export-Package>
89           </instructions>
90         </configuration>
91       </plugin>
92     </plugins>
93   </build>
94   <scm>
95     <connection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</connection>
96     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</developerConnection>
97     <tag>HEAD</tag>
98     <url>https://wiki.opendaylight.org/view/OpenDaylight_dlux:Main</url>
99   </scm>
100 </project>