org.opennms.oce.wrap.jung-1.0.0-20190308.072832-3.pom

Checksums

MD5 ee2d754a2a508f938ff6f7c783fd754b
SHA1 e2593b2406d53c605bd19c6faf35bb52591ecd37
SHA256 928d131c78235af1758ae742c3793791a9d33db7a9f9bbd182628f3266e686bd
SHA512 6988db778fe393ac716c8454f42701d6a86d6c8b7ed879ba3a6a7a6efa8d09ecfefedf4251c8329d0c3e89041d11f7954424a22ea089e268d40873542572c63e

POM

<?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>wrap</artifactId>
    <groupId>org.opennms.oce</groupId>
    <version>1.0.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.opennms.oce.wrap</groupId>
  <artifactId>org.opennms.oce.wrap.jung</artifactId>
  <packaging>bundle</packaging>
  <name>OCE :: Wrap :: Jung</name>
  <build>
    <defaultGoal>install</defaultGoal>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.1.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <excludes>
                  <exclude>com.google.guava:guava</exclude>
                </excludes>
              </artifactSet>
              <createDependencyReducedPom>true</createDependencyReducedPom>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Import-Package>com.google.common.base,com.google.common.collect</Import-Package>
            <Export-Package>edu.uci.ics.jung.graph;version="${jung.version}",
                                        edu.uci.ics.jung.algorithms.shortestpath;version="${jung.version}",
                                        edu.uci.ics.jung.algorithms.filters;version="${jung.version}",
                                        edu.uci.ics.jung.graph.util;version="${jung.version}",</Export-Package>
          </instructions>
          <unpackBundle>true</unpackBundle>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <jung.version>2.1.1</jung.version>
  </properties>
</project>