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>bundles-pom</artifactId>
<groupId>org.apache.servicemix.bundles</groupId>
<version>13</version>
<relativePath>../bundles-pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.dom4j</artifactId>
<packaging>bundle</packaging>
<name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
<version>2.1.1_1</version>
<description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</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>
<tag>org.apache.servicemix.bundles.dom4j-2.1.1_1</tag>
<url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>${pkgGroupId}:${pkgArtifactId}</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
</filters>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<pkgVersion>2.1.1</pkgVersion>
<servicemix.osgi.import.pkg>javax.xml.namespace,
javax.xml.parsers,
javax.xml.transform*,
org.w3c.dom,
org.xml.sax*,
javax.xml.stream*;version="[1.0,2)",
javax.swing*;resolution:=optional,
com.sun.msv.datatype*;resolution:=optional,
javax.xml.bind*;resolution:=optional;version="[2.0,3)",
org.gjt.xpp;resolution:=optional;version="[2,3)",
org.jaxen*;resolution:=optional;version="[1.1.6,2)",
org.relaxng.datatype;resolution:=optional;version="[1,2)",
org.xmlpull.v1;resolution:=optional;version="[1.1.3,2)",
org.xmlpull.mxp1;resolution:=optional;version="[1.1.3,2)"</servicemix.osgi.import.pkg>
<servicemix.osgi.export.pkg>org.dom4j</servicemix.osgi.export.pkg>
<pkgArtifactId>dom4j</pkgArtifactId>
<pkgGroupId>org.dom4j</pkgGroupId>
</properties>
</project>
|