<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>oshi-parent</artifactId>
    <groupId>com.github.oshi</groupId>
    <version>5.3.6</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>oshi-core-shaded</artifactId>
  <name>oshi-core-shaded</name>
  <scm>
    <connection>scm:git:git@github.com:oshi/oshi.git</connection>
    <developerConnection>scm:git:git@github.com:oshi/oshi.git</developerConnection>
    <tag>oshi-parent-5.3.6</tag>
    <url>https://github.com/oshi/oshi.git</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>${maven-shade-plugin.version}</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>org.slf4j:slf4j-api:</include>
                  <include>org.slf4j:slf4j-jdk14:</include>
                </includes>
              </artifactSet>
              <createDependencyReducedPom>true</createDependencyReducedPom>
              <createSourcesJar>true</createSourcesJar>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>${maven-javadoc-plugin.version}</version>
        <executions>
          <execution>
            <id>javadoc-jar</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <includeDependencySources>true</includeDependencySources>
              <dependencySourceIncludes>
                <dependencySourceInclude>com.github.oshi:*</dependencySourceInclude>
              </dependencySourceIncludes>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>biz.aQute.bnd</groupId>
        <artifactId>bnd-maven-plugin</artifactId>
        <version>${bnd-maven-plugin.version}</version>
        <configuration>
          <bnd>Export-Package: oshi.*;-noimport:=true;-split-package:=merge-first
					Bundle-SymbolicName: ${project.groupId}.${project.artifactId}
					-snapshot: SNAPSHOT</bnd>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>com.github.oshi</groupId>
      <artifactId>oshi-core</artifactId>
      <version>5.3.6</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <properties>
    <main.basedir>${project.parent.basedir}</main.basedir>
    <automatic.module.name>com.github.oshi.shaded</automatic.module.name>
  </properties>
</project>
