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.

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