Bump versions by x.y.(z+1)
[groupbasedpolicy.git] / groupbasedpolicy-ui / bundle / 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.groupbasedpolicy</groupId>
6     <artifactId>groupbasedpolicy-ui</artifactId>
7     <version>0.6.2-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>groupbasedpolicy-ui-bundle</artifactId>
11   <!-- <name> formatting is used by autorelease to parse and notify projects on
12        build failure. Please do not modify this unless you have a good reason. -->
13   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
14   <packaging>bundle</packaging>
15
16     <properties>
17         <dlux.version>0.6.2-SNAPSHOT</dlux.version>
18     </properties>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.dlux</groupId>
23       <artifactId>loader</artifactId>
24         <version>${dlux.version}</version>
25     </dependency>
26      <dependency>
27       <groupId>org.opendaylight.groupbasedpolicy</groupId>
28       <artifactId>groupbasedpolicy-ui-module</artifactId>
29       <version>${project.version}</version>
30       <scope>provided</scope>
31     </dependency>
32     <dependency>
33       <groupId>javax.servlet</groupId>
34       <artifactId>javax.servlet-api</artifactId>
35       <version>3.1.0</version>
36     </dependency>
37   </dependencies>
38  <build>
39    <resources>
40       <resource>
41         <directory>target/generated-resources</directory>
42       </resource>
43       <resource>
44         <directory>src/main/resources</directory>
45       </resource>
46     </resources>
47     <plugins>
48      <plugin>
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-dependency-plugin</artifactId>
51         <executions>
52      <!--loader Resources-->
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.dlux</groupId>
62               <includeArtifactIds>groupbasedpolicy-ui-module</includeArtifactIds>
63                 <includes>gbp/build\/**</includes>
64                 <excludes>META-INF\/**,gbp/node\/**,gbp/node_modules\/**</excludes>
65               <excludeTransitive>true</excludeTransitive>
66               <ignorePermissions>false</ignorePermissions>
67             </configuration>
68           </execution>
69         </executions>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.felix</groupId>
73         <artifactId>maven-bundle-plugin</artifactId>
74         <extensions>true</extensions>
75         <configuration>
76           <instructions>
77             <Import-Package>
78               org.osgi.service.http,
79               org.osgi.framework;version="1.0.0",
80               org.opendaylight.dlux.loader,
81               org.slf4j
82             </Import-Package>
83             <Export-Package></Export-Package>
84           </instructions>
85         </configuration>
86       </plugin>
87     </plugins>
88   </build>
89   <scm>
90     <connection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</connection>
91     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</developerConnection>
92     <tag>HEAD</tag>
93     <url>https://wiki.opendaylight.org/view/OpenDaylight_dlux:Main</url>
94   </scm>
95 </project>