openpdf-ivs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.doobo</groupId> <artifactId>openpdf-ivs</artifactId> <version>1.0</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.doobo</groupId> <artifactId>openpdf-ivs</artifactId> <packaging>jar</packaging> <version>1.0</version> <name>openpdf-ivs</name> <description>基于OpenPdf的ivs表意字体支持</description> <url>https://github.com/doobo/openpdf-ivs</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <javadoc.version>8</javadoc.version> <compiler-plugin.version>3.6.2</compiler-plugin.version> <war-plugin.version>3.1.0</war-plugin.version> <clean-plugin.version>3.0.0</clean-plugin.version> <resources-plugin.version>3.0.2</resources-plugin.version> <surefire-plugin.version>2.20</surefire-plugin.version> <jar-plugin.version>3.0.2</jar-plugin.version> <source-plugin.version>3.0.1</source-plugin.version> <javadoc-plugin.version>3.0.1</javadoc-plugin.version> <gpg-plugin.version>1.6</gpg-plugin.version> <plugin.release.version>2.5.3</plugin.release.version> <maven.test.skip>true</maven.test.skip> </properties> <licenses> <license> <name>GNU General Lesser Public License (LGPL) version 3.0</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> <license> <name>Mozilla Public License Version 2.0</name> <url>http://www.mozilla.org/MPL/2.0/</url> <distribution>repo</distribution> </license> </licenses> <scm> <tag>v1.0</tag> <url>https://github.com/doobo/openpdf-ivs</url> <connection>scm:git:git@github.com:doobo/openpdf-ivs.git</connection> <developerConnection>scm:git:git@github.com:doobo/openpdf-ivs.git</developerConnection> </scm> <distributionManagement> <repository> <id>oss</id> <url> https://oss.sonatype.org/service/local/staging/deploy/maven2 </url> </repository> <snapshotRepository> <id>oss</id> <uniqueVersion>false</uniqueVersion> <url> https://oss.sonatype.org/content/repositories/snapshots </url> </snapshotRepository> </distributionManagement> <developers> <developer> <id>com.github.doobo</id> <name>doobo</name> <email>doobo@foxmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>com.github.librepdf</groupId> <artifactId>openpdf</artifactId> <version>1.3.20</version> <optional>true</optional> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <!-- Create javadoc for help --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc-plugin.version}</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <!-- Disable doclint checks to build it under java 8 javadoc --> <configuration> <additionalJOptions>-Xdoclint:none</additionalJOptions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg-plugin.version}</version> <executions> <execution> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>oss</id> <url> https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-plugin.version}</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${plugin.release.version}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <generateReleasePoms>false</generateReleasePoms> <arguments>-DskipTests</arguments> <checkModificationExcludes> <checkModificationExclude>.gitignore</checkModificationExclude> <checkModificationExclude>install.sh</checkModificationExclude> <checkModificationExclude>pom.xml</checkModificationExclude> <checkModificationExclude>README.md</checkModificationExclude> </checkModificationExcludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalJOptions>-Xdoclint:none</additionalJOptions> </configuration> </execution> </executions> <configuration> <source>8</source> <links> <link> http://docs.oracle.com/javase/${javadoc.version}/docs/api </link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg-plugin.version}</version> <executions> <execution> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>