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.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.2.0.A</version>
  7. <packaging>jar</packaging>
  8. <name>easypoi-spring-boot-starter</name>
  9. <url>http://opensource.afterturn.cn/</url>
  10. <description>office utils base 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://github.com/jueyue/easypoi.git</connection>
  19. <developerConnection>https://github.com/jueyue/easypoi.git</developerConnection>
  20. <url>https://github.com/jueyue/easypoi.git</url>
  21. </scm>
  22. <developers>
  23. <developer>
  24. <name>JueYue</name>
  25. <email>quranbo@foxmail.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://opensource.afterturn.cn/</url>
  35. </organization>
  36. <properties>
  37. <spring-boot.version>2.1.5.RELEASE</spring-boot.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>cn.afterturn</groupId>
  42. <artifactId>easypoi-web</artifactId>
  43. <<<<<<< HEAD
  44. <version>4.2.0</version>
  45. =======
  46. <version>4.1.3.A</version>
  47. >>>>>>> f51df45... 支持前缀
  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. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot</artifactId>
  59. <version>${spring-boot.version}</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-configuration-processor</artifactId>
  66. <version>${spring-boot.version}</version>
  67. <optional>true</optional>
  68. <scope>compile</scope>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.sonatype.plugins</groupId>
  75. <artifactId>nexus-staging-maven-plugin</artifactId>
  76. <version>1.6.5</version>
  77. <configuration>
  78. <serverId>ossrh</serverId>
  79. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  80. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-release-plugin</artifactId>
  86. <version>2.5</version>
  87. <configuration>
  88. <autoVersionSubmodules>true</autoVersionSubmodules>
  89. <useReleaseProfile>false</useReleaseProfile>
  90. <releaseProfiles>release</releaseProfiles>
  91. <goals>deploy</goals>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-source-plugin</artifactId>
  96. <version>2.1</version>
  97. <configuration>
  98. <attach>true</attach>
  99. </configuration>
  100. <executions>
  101. <execution>
  102. <phase>compile</phase>
  103. <goals>
  104. <goal>jar</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <version>3.0</version>
  113. <configuration>
  114. <source>1.8</source>
  115. <target>1.8</target>
  116. <encoding>UTF-8</encoding>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>