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.

120 line
4.6 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>4.1.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>2.1.5.RELEASE</spring-boot.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>cn.afterturn</groupId>
  36. <artifactId>easypoi-web</artifactId>
  37. <version>4.1.0</version>
  38. </dependency>
  39. <!-- Compile dependencies -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-autoconfigure</artifactId>
  43. <version>${spring-boot.version}</version>
  44. </dependency>
  45. <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-configuration-processor</artifactId>
  49. <version>${spring-boot.version}</version>
  50. <optional>true</optional>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.sonatype.plugins</groupId>
  57. <artifactId>nexus-staging-maven-plugin</artifactId>
  58. <version>1.6.5</version>
  59. <configuration>
  60. <serverId>ossrh</serverId>
  61. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  62. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-release-plugin</artifactId>
  68. <version>2.5</version>
  69. <configuration>
  70. <autoVersionSubmodules>true</autoVersionSubmodules>
  71. <useReleaseProfile>false</useReleaseProfile>
  72. <releaseProfiles>release</releaseProfiles>
  73. <goals>deploy</goals>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-source-plugin</artifactId>
  78. <version>2.1</version>
  79. <configuration>
  80. <attach>true</attach>
  81. </configuration>
  82. <executions>
  83. <execution>
  84. <phase>compile</phase>
  85. <goals>
  86. <goal>jar</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. <version>3.0</version>
  95. <configuration>
  96. <source>1.8</source>
  97. <target>1.8</target>
  98. <encoding>UTF-8</encoding>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. <distributionManagement>
  104. <repository>
  105. <id>postaop-pay-platform-release</id>
  106. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-release/</url>
  107. </repository>
  108. <snapshotRepository>
  109. <id>postaop-pay-platform-snapshot</id>
  110. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-snapshot/</url>
  111. </snapshotRepository>
  112. </distributionManagement>
  113. </project>