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