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.

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