btg-poi-ext
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.zcltd.btg</groupId> <artifactId>btg-poi-ext</artifactId> <version>4.0.3</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>cn.zcltd.btg</groupId> <artifactId>btg-poi-ext</artifactId> <version>4.0.3</version> <packaging>jar</packaging> <name>btg-poi-ext</name> <url>https://gitee.com/zcltd-btg/btg-poi-ext</url> <description>btg-poi-ext</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> </properties> <issueManagement> <system>gitee issue</system> <url>https://gitee.com/zcltd-btg/btg-poi-ext/issues</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>jounzhang</id> <name>豆圆</name> <email>jounzhang@126.com</email> <url>https://gitee.com/jounzhang</url> </developer> <developer> <id>kissthem</id> <name>kissthem</name> <email>kissthem@126.com</email> <url>https://gitee.com/btg</url> </developer> </developers> <scm> <connection>scm:git:git@gitee.com:zcltd-btg/btg-poi-ext.git</connection> <developerConnection>scm:git:git@gitee.com:zcltd-btg/btg-poi-ext.git</developerConnection> <url>git@gitee.com:zcltd-btg/btg-poi-ext.git</url> </scm> <dependencies> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.17</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.17</version> </dependency> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>2.6.0</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.44</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>cn.zcltd.btg</groupId> <artifactId>btg-util</artifactId> <version>4.0.15</version> </dependency> </dependencies> <build> <plugins> <!-- 指定编译jdk版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> <compilerArgument>-parameters</compilerArgument> </configuration> </plugin> <!-- 跳过测试 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.20.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <!-- 生成javadoc文档包 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.2</version> <configuration> <aggregate>true</aggregate> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- 生成sources源码包 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--jar包包含源码 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.*</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <!-- pgp签名 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> </configuration> </plugin> <!-- deploy使用2.8支持profile里面的部署参数 --> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8</version> </plugin> </plugins> </build> </project>