seal-office
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>work.seals</groupId> <artifactId>seal-office</artifactId> <version>3.5.5</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"> <parent> <artifactId>seal</artifactId> <groupId>work.seals</groupId> <version>3.5.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>seal-office</artifactId> <version>3.5.5</version> <description>office文档工具</description> <!-- deploy start --> <!-- licenses --> <licenses> <!-- MIT许可证 --> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> <!-- Apache许可证 --> <!-- <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> --> </licenses> <!-- developers --> <developers> <developer> <name>silianpan</name> <email>liu.pan@silianpan.cn</email> <url>http://www.silianpan.cn</url> </developer> </developers> <!-- scm --> <scm> <tag>master</tag> <connection>https://github.com/silianpan/uniapp-admin</connection> <developerConnection>https://github.com/silianpan</developerConnection> <url>https://github.com/silianpan/uniapp-admin</url> </scm> <!-- deploy end --> <dependencies> <!-- 通用工具--> <dependency> <groupId>work.seals</groupId> <artifactId>seal-common</artifactId> </dependency> <!-- office tools start --> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-core</artifactId> </dependency> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-local</artifactId> </dependency> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-online</artifactId> </dependency> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-remote</artifactId> </dependency> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.libreoffice</groupId> <artifactId>ridl</artifactId> </dependency> <!-- office tools end --> </dependencies> <!-- deploy start --> <!-- profiles --> <profiles> <profile> <id>release</id> <activation> <activeByDefault>true</activeByDefault> </activation> <!-- <properties>--> <!-- <gpg.executable>gpg2</gpg.executable>--> <!-- <gpg.passphrase>the_pass_phrase</gpg.passphrase>--> <!-- </properties>--> <build> <plugins> <!-- 要生成Javadoc和Source jar文件,您必须配置javadoc和源Maven插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- 必须配置GPG插件用于使用以下配置对组件进行签名 --> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Nexus Staging Maven插件,用于自动部署和发布 --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <!-- 中央仓库start --> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <!-- 中央仓库end --> <!-- nexus私服start --> <!-- <repository>--> <!-- <id>nexus-releases</id>--> <!-- <name>maven-releases</name>--> <!-- <url>http://39.98.39.58:9002/repository/maven-releases/</url>--> <!-- </repository>--> <!-- <snapshotRepository>--> <!-- <id>nexus-snapshots</id>--> <!-- <name>maven-snapshots</name>--> <!-- <url>http://39.98.39.58:9002/repository/maven-snapshots/</url>--> <!-- </snapshotRepository>--> <!-- nexus私服end --> </distributionManagement> </profile> </profiles> <!-- deploy end --> </project>