You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 line
6.2 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cn.afterturn</groupId>
  5. <artifactId>easypoi-spring-boot-starter</artifactId>
  6. <version>3.2.0</version>
  7. <packaging>jar</packaging>
  8. <name>asypoi-spring-boot-starter</name>
  9. <url>http://www.afterturn.cn</url>
  10. <description>office 工具类 基于 poi</description>
  11. <licenses>
  12. <license>
  13. <name>The Apache License, Version 2.0</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  15. </license>
  16. </licenses>
  17. <scm>
  18. <connection>https://gitee.com/lemur/easypoi-spring-boot-starter.git</connection>
  19. <developerConnection>https://gitee.com/lemur/easypoi-spring-boot-starter.git</developerConnection>
  20. <url>https://gitee.com/lemur/easypoi-spring-boot-starter.git</url>
  21. </scm>
  22. <developers>
  23. <developer>
  24. <name>JueYue</name>
  25. <email>qrb.jueyue@gmail.com</email>
  26. </developer>
  27. <developer>
  28. <name>魔幻之翼</name>
  29. <email>xf.key@163.com</email>
  30. </developer>
  31. </developers>
  32. <organization>
  33. <name>Lumer</name>
  34. <url>http://www.afterturn.cn</url>
  35. </organization>
  36. <properties>
  37. <spring-boot.version>1.2.5.RELEASE</spring-boot.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>cn.afterturn</groupId>
  42. <artifactId>easypoi-web</artifactId>
  43. <version>3.2.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.poi</groupId>
  47. <artifactId>poi-scratchpad</artifactId>
  48. <version>3.15</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>ooxml-schemas</artifactId>
  53. <version>1.3</version>
  54. </dependency>
  55. <!-- Compile dependencies -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-autoconfigure</artifactId>
  59. <version>${spring-boot.version}</version>
  60. </dependency>
  61. <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-configuration-processor</artifactId>
  65. <version>${spring-boot.version}</version>
  66. <optional>true</optional>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.sonatype.plugins</groupId>
  73. <artifactId>nexus-staging-maven-plugin</artifactId>
  74. <version>1.6.5</version>
  75. <configuration>
  76. <serverId>ossrh</serverId>
  77. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  78. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  79. </configuration>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-release-plugin</artifactId>
  84. <version>2.5</version>
  85. <configuration>
  86. <autoVersionSubmodules>true</autoVersionSubmodules>
  87. <useReleaseProfile>false</useReleaseProfile>
  88. <releaseProfiles>release</releaseProfiles>
  89. <goals>deploy</goals>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.0</version>
  96. <configuration>
  97. <source>1.6</source>
  98. <target>1.6</target>
  99. <encoding>UTF-8</encoding>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-gpg-plugin</artifactId>
  105. <version>1.6</version>
  106. <executions>
  107. <execution>
  108. <id>sign-artifacts</id>
  109. <phase>verify</phase>
  110. <goals>
  111. <goal>sign</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-source-plugin</artifactId>
  119. <version>2.2.1</version>
  120. <executions>
  121. <execution>
  122. <id>attach-sources</id>
  123. <goals>
  124. <goal>jar-no-fork</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-javadoc-plugin</artifactId>
  132. <version>2.6</version>
  133. <executions>
  134. <execution>
  135. <id>attach-javadocs</id>
  136. <goals>
  137. <goal>jar</goal>
  138. </goals>
  139. <configuration>
  140. <additionalparam>-Xdoclint:none</additionalparam>
  141. </configuration>
  142. </execution>
  143. </executions>
  144. <configuration>
  145. <encoding>UTF-8</encoding>
  146. <failOnError>false</failOnError>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. <distributionManagement>
  152. <repository>
  153. <id>oss-release</id>
  154. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  155. </repository>
  156. <snapshotRepository>
  157. <id>oss-snapshot</id>
  158. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  159. </snapshotRepository>
  160. </distributionManagement>
  161. </project>