<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/maven-v4_0_0.xsd">

    <!--  THIS PRODUCT CONTAINS RESTRICTED MATERIALS OF IBM
    5724-H72 (C) COPYRIGHT International Business Machines Corp. 1994,2017
    All Rights Reserved * Licensed Materials - Property of IBM
    US Government Users Restricted Rights - Use, duplication or disclosure
    restricted by GSA ADP Schedule Contract with IBM Corp.
    -->



  <licenses>
    <license>
      <name>IBM International License Agreement for Non-Warranted Programs</name>
      <url>http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/maven/licenses/L-APIG-AQRDWJ/</url>
      <distribution>repo</distribution>
      <comments>Additional notices: http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqdev/maven/licenses/L-APIG-AQRDWJ/notices.html</comments>
    </license>
  </licenses>

  <modelVersion>4.0.0</modelVersion>
  <groupId>com.ibm.mq</groupId>
  <artifactId>wmq.jmsra.rar</artifactId>
  <version>0.0.0.1</version>
  <name>IBM MQ</name>
  <url>https://www.ibm.com/software/products/en/ibm-mq</url>
  <packaging>jar</packaging>
  <description>IBM MQ client components</description>
  <scm>
    <url>https://github.com/ibm-messaging</url>
  </scm>
  <developers>
    <developer>
      <name>IBM MQ Development</name>
    </developer>
  </developers>
<!--The Bouncy Castle dependencies have a different name in Maven than we
    expect in MQ as the files that come direct from the BC site have version
    numbers without a '.' in them). So we may have to depend on the user
    setting the ClassPath appropriately to pull in those files instead of
    relying on internal settings in MQ.
 -->

<dependencies>
  <dependency>
    <groupId>org.bouncycastle</groupId>
    <artifactId>bcprov-jdk15on.jar</artifactId>
    <version>1.57</version>
  </dependency>
  <dependency>
    <groupId>org.bouncycastle</groupId>
    <artifactId>bcpkix-jdk15on.jar</artifactId>
    <version>1.57</version>
  </dependency>
  <dependency>
    <groupId>javax.jms</groupId>
    <artifactId>javax-jms-api.jar</artifactId>
    <version>2.0.1</version>
  </dependency>
</dependencies>
<build>
  <plugins>
    <plugin>
      <groupId>org.sonatype.plugins</groupId>
      <artifactId>nexus-staging-maven-plugin</artifactId>
      <version>1.6.8</version>
      <extensions>true</extensions>
      <configuration>
        <serverId>ossrh</serverId>
        <nexusUrl>https://oss.sonatype.org/</nexusUrl>
        <autoReleaseAfterClose>false</autoReleaseAfterClose>
      </configuration>
    </plugin>

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-gpg-plugin</artifactId>
      <version>1.5</version>
      <executions>
        <execution>
          <id>sign-artifacts</id>
          <phase>verify</phase>
          <goals>
            <goal>sign</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

    <plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

  </plugins>

</build>
</project>
