| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2006-2015 phloc systems
http://www.phloc.com
office[at]phloc[dot]com
Licensed 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.
-->
<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>
<groupId>com.phloc</groupId>
<artifactId>parent-pom</artifactId>
<version>24.0</version>
<relativePath>../phloc-parent-pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>phloc-commons</artifactId>
<version>4.4.13</version>
<packaging>bundle</packaging>
<name>phloc-commons</name>
<description>phloc very basic stuff</description>
<url>http://github.com/phlocbg/phloc-commons</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/phlocbg/phloc-commons</connection>
<developerConnection>scm:git:https://github.com/phlocbg/phloc-commons</developerConnection>
<url>http://github.com/phlocbg/phloc-commons</url>
<tag>phloc-commons-4.4.13</tag>
</scm>
<organization>
<name>phloc systems</name>
<url>http://www.phloc.com</url>
</organization>
<developers>
<developer>
<id>boris</id>
<name>Boris Gregorcic</name>
<email>bg(at)phloc.com</email>
<url>http://www.phloc.com</url>
<organization>phloc systems</organization>
</developer>
</developers>
<properties>
<jaxb.api.version>2.1</jaxb.api.version>
<jaxb.impl.version>2.1.13</jaxb.impl.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- We need annotations and not jsr305 because SuppressFBWarnings annotation is required! -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>2.0.3</version>
</dependency>
<!-- Xerces is required when handling XML 1.1!!! -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.4.01</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.api.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.impl.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-jdk5</artifactId>
<version>1.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>com.phloc.commons.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
|