Bump versions by x.(y+1).z for next dev cycle
[nemo.git] / nemo-ui / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   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.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.13.0-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-ui</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: nemo :: ${project.artifactId}</name>
26
27   <properties>
28     <dlux.version>0.8.0-SNAPSHOT</dlux.version>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>org.opendaylight.dlux</groupId>
34       <artifactId>loader</artifactId>
35       <version>${dlux.version}</version>
36     </dependency>
37   </dependencies>
38
39   <build>
40     <resources>
41       <resource>
42         <directory>target/generated-resources</directory>
43       </resource>
44       <resource>
45         <directory>src/main/resources</directory>
46       </resource>
47     </resources>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-dependency-plugin</artifactId>
52         <executions>
53           <execution>
54             <id>unpack-loader-resources</id>
55             <goals>
56               <goal>unpack-dependencies</goal>
57             </goals>
58             <phase>generate-resources</phase>
59             <configuration>
60               <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
61               <groupId>org.opendaylight.nemo</groupId>
62               <includeArtifactIds>nemo-ui</includeArtifactIds>
63               <excludes>META-INF\/**</excludes>
64               <excludeTransitive>true</excludeTransitive>
65               <ignorePermissions>false</ignorePermissions>
66             </configuration>
67           </execution>
68         </executions>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <extensions>true</extensions>
74         <configuration>
75           <instructions>
76             <Import-Package>
77               org.osgi.service.http,
78               org.osgi.framework;version="1.0.0",
79               org.opendaylight.dlux.loader,
80               org.slf4j
81             </Import-Package>
82             <Export-Package></Export-Package>
83           </instructions>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88
89   <scm>
90     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
91     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
92     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
93     <tag>HEAD</tag>
94   </scm>
95 </project>