| <?xml version="1.0" encoding="UTF-8"?> |
| <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"> |
| |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>bundles-pom</artifactId> |
| <version>14</version> |
| <relativePath>../bundles-pom/pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.atlassian-jira-client</artifactId> |
| <packaging>bundle</packaging> |
| <version>5.1.6_2-SNAPSHOT</version> |
| <name>Apache ServiceMix :: Bundles :: Atlassian Jira Client</name> |
| <description> |
| This OSGi bundle wraps atlassian jira-rest-java-client-api, jira-rest-java-client-core ${pkgVersion} jar files. |
| </description> |
| |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <repositories> |
| <repository> |
| <id>atlassian-public</id> |
| <name>Atlassian Public Repo</name> |
| <url>https://packages.atlassian.com/maven-external</url> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| </repositories> |
| |
| <properties> |
| <pkgGroupId>com.atlassian.jira</pkgGroupId> |
| <pkgVersion>5.1.6</pkgVersion> |
| <servicemix.osgi.export> |
| com.atlassian.jira.rest.client*;version=${pkgVersion}, |
| com.atlassian.httpclient*;version=${pkgVersion}, |
| com.atlassian.event*;version=${pkgVersion}, |
| com.atlassian.sal*;version=3.0.7, |
| io.atlassian.fugue*;version=3.0.0, |
| io.atlassian.util*, |
| com.atlassian.fugue*;version=3.0.0 |
| </servicemix.osgi.export> |
| <servicemix.osgi.import.pkg> |
| !com.atlassian.jira.rest.client*, |
| !com.atlassian.event*, |
| !com.atlassian.httpclient*, |
| !com.atlassian.analytics*, |
| !com.atlassian.inject*, |
| !com.atlassian.plugin*, |
| !com.atlassian.sal*, |
| !io.atlassian.fugue*, |
| !com.atlassian.fugue*, |
| !io.atlassian.util*, |
| com.google.common*;version="[20,30)", |
| org.springframework*;resolition:=optional, |
| * |
| </servicemix.osgi.import.pkg> |
| <servicemix.osgi.private.pkg> |
| com.atlassian.analytics*, |
| com.atlassian.inject*, |
| com.atlassian.plugin* |
| </servicemix.osgi.private.pkg> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>${pkgGroupId}</groupId> |
| <artifactId>jira-rest-java-client-api</artifactId> |
| <version>${pkgVersion}</version> |
| <optional>false</optional> |
| </dependency> |
| <dependency> |
| <groupId>${pkgGroupId}</groupId> |
| <artifactId>jira-rest-java-client-core</artifactId> |
| <version>${pkgVersion}</version> |
| <optional>false</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.atlassian.fugue</groupId> |
| <artifactId>fugue</artifactId> |
| <version>3.0.0</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>shade</goal> |
| </goals> |
| <configuration> |
| <artifactSet> |
| <includes> |
| <include>${pkgGroupId}:jira-rest-java-client-api</include> |
| <include>${pkgGroupId}:jira-rest-java-client-core</include> |
| </includes> |
| </artifactSet> |
| <filters> |
| <filter> |
| <artifact>${pkgGroupId}:jira-rest-java-client-api</artifact> |
| <excludes> |
| <exclude>**</exclude> |
| </excludes> |
| </filter> |
| <filter> |
| <artifact>${pkgGroupId}:jira-rest-java-client-core</artifact> |
| <excludes> |
| <exclude>**</exclude> |
| </excludes> |
| </filter> |
| </filters> |
| <promoteTransitiveDependencies>true</promoteTransitiveDependencies> |
| <createDependencyReducedPom>true</createDependencyReducedPom> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |