Bump versions by x.y.(z+1)
[dlux.git] / bundles / core / 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.core</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.slf4j</groupId>
33           <artifactId>slf4j-api</artifactId>
34       </dependency>
35       <dependency>
36           <groupId>com.google.guava</groupId>
37           <artifactId>guava</artifactId>
38       </dependency>
39     <dependency>
40       <groupId>org.opendaylight.dlux</groupId>
41       <artifactId>loader</artifactId>
42       <version>${project.version}</version>
43   </dependency>
44       <dependency>
45           <groupId>org.opendaylight.dlux</groupId>
46           <artifactId>loader.implementation</artifactId>
47           <version>${project.version}</version>
48       </dependency>
49      <dependency>
50       <groupId>org.opendaylight.dlux</groupId>
51       <artifactId>dlux.core.resources</artifactId>
52       <version>${core.resources.version}</version>
53     </dependency>
54   </dependencies>
55  <build>
56    <resources>
57       <resource>
58         <directory>target/generated-resources</directory>
59       </resource>
60       <resource>
61         <directory>src/main/resources</directory>
62       </resource>
63     </resources>
64     <plugins>
65      <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-dependency-plugin</artifactId>
68         <executions>
69      <!--loader Resources-->
70           <execution>
71             <id>unpack-loader-resources</id>
72             <goals>
73               <goal>unpack-dependencies</goal>
74             </goals>
75             <phase>generate-resources</phase>
76             <configuration>
77               <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
78               <groupId>org.opendaylight.dlux</groupId>
79               <includeArtifactIds>dlux.core.resources</includeArtifactIds>
80               <excludes>META-INF\/**</excludes>
81               <excludeTransitive>true</excludeTransitive>
82               <ignorePermissions>false</ignorePermissions>
83             </configuration>
84           </execution>
85         </executions>
86       </plugin>
87       <plugin>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>maven-bundle-plugin</artifactId>
90         <extensions>true</extensions>
91         <configuration>
92           <instructions>
93               <Import-Package>org.osgi.service.http,
94                   org.osgi.framework;version="1.0.0",
95                   org.opendaylight.dlux.loader,
96                   org.slf4j
97               </Import-Package>
98             <Export-Package></Export-Package>
99           </instructions>
100         </configuration>
101       </plugin>
102     </plugins>
103   </build>
104   <scm>
105     <connection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</connection>
106     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</developerConnection>
107     <tag>HEAD</tag>
108     <url>https://wiki.opendaylight.org/view/OpenDaylight_dlux:Main</url>
109   </scm>
110 </project>