Bump upstreams to Magnesium SR2
[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>1.0.0-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.slf4j</groupId>
24       <artifactId>jcl-over-slf4j</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.dlux</groupId>
28       <artifactId>loader</artifactId>
29         <version>${project.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.dlux</groupId>
33       <artifactId>dlux.common.layout.resources</artifactId>
34       <version>${common.layout.resources.version}</version>
35     </dependency>
36   </dependencies>
37  <build>
38      <resources>
39          <resource>
40              <directory>target/generated-resources</directory>
41          </resource>
42          <resource>
43              <directory>src/main/resources</directory>
44          </resource>
45      </resources>
46     <plugins>
47      <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-dependency-plugin</artifactId>
50         <executions>
51      <!--loader Resources-->
52           <execution>
53             <id>unpack-loader-resources</id>
54             <goals>
55               <goal>unpack-dependencies</goal>
56             </goals>
57             <phase>generate-resources</phase>
58             <configuration>
59               <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
60               <groupId>org.opendaylight.dlux</groupId>
61               <includeArtifactIds>dlux.common.layout.resources</includeArtifactIds>
62               <excludes>META-INF\/**</excludes>
63               <excludeTransitive>true</excludeTransitive>
64               <ignorePermissions>false</ignorePermissions>
65             </configuration>
66           </execution>
67         </executions>
68       </plugin>
69       <plugin>
70         <groupId>org.apache.felix</groupId>
71         <artifactId>maven-bundle-plugin</artifactId>
72         <extensions>true</extensions>
73         <configuration>
74           <instructions>
75             <Import-Package>org.osgi.service.http,
76                             org.osgi.framework;version="1.0.0",
77                             org.opendaylight.dlux.loader,
78                             org.slf4j
79             </Import-Package>
80             <Export-Package></Export-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84     </plugins>
85   </build>
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</developerConnection>
89     <tag>HEAD</tag>
90     <url>https://wiki.opendaylight.org/view/OpenDaylight_dlux:Main</url>
91   </scm>
92 </project>