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.

130 lines
4.9 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.3.0</version>
  7. <packaging>jar</packaging>
  8. <name>easypoi-spring-boot-starter</name>
  9. <url>https://gitee.com/lemur/easypoi-spring-boot-starter</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@foxmail.com</email>
  26. <organization>Easypoi</organization>
  27. <organizationUrl>http://www.Easypoi.org</organizationUrl>
  28. </developer>
  29. </developers>
  30. <properties>
  31. <spring-boot.version>1.5.3.RELEASE</spring-boot.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>cn.afterturn</groupId>
  36. <artifactId>easypoi-web</artifactId>
  37. <version>3.3.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.poi</groupId>
  41. <artifactId>poi-scratchpad</artifactId>
  42. <version>3.15</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>ooxml-schemas</artifactId>
  47. <version>1.3</version>
  48. </dependency>
  49. <!-- Compile dependencies -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-autoconfigure</artifactId>
  53. <version>${spring-boot.version}</version>
  54. </dependency>
  55. <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-configuration-processor</artifactId>
  59. <version>${spring-boot.version}</version>
  60. <optional>true</optional>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.sonatype.plugins</groupId>
  67. <artifactId>nexus-staging-maven-plugin</artifactId>
  68. <version>1.6.5</version>
  69. <configuration>
  70. <serverId>ossrh</serverId>
  71. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  72. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-release-plugin</artifactId>
  78. <version>2.5</version>
  79. <configuration>
  80. <autoVersionSubmodules>true</autoVersionSubmodules>
  81. <useReleaseProfile>false</useReleaseProfile>
  82. <releaseProfiles>release</releaseProfiles>
  83. <goals>deploy</goals>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-source-plugin</artifactId>
  88. <version>2.1</version>
  89. <configuration>
  90. <attach>true</attach>
  91. </configuration>
  92. <executions>
  93. <execution>
  94. <phase>compile</phase>
  95. <goals>
  96. <goal>jar</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-compiler-plugin</artifactId>
  104. <version>3.0</version>
  105. <configuration>
  106. <source>1.6</source>
  107. <target>1.6</target>
  108. <encoding>UTF-8</encoding>
  109. </configuration>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. <distributionManagement>
  114. <repository>
  115. <id>postaop-pay-platform-release</id>
  116. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-release/</url>
  117. </repository>
  118. <snapshotRepository>
  119. <id>postaop-pay-platform-snapshot</id>
  120. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-snapshot/</url>
  121. </snapshotRepository>
  122. </distributionManagement>
  123. </project>