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.

124 lines
4.5 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.3.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. <version>4.1.3.A</version>
  44. </dependency>
  45. <!-- Compile dependencies -->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-autoconfigure</artifactId>
  49. <version>${spring-boot.version}</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot</artifactId>
  55. <version>${spring-boot.version}</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-configuration-processor</artifactId>
  62. <version>${spring-boot.version}</version>
  63. <optional>true</optional>
  64. <scope>compile</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.sonatype.plugins</groupId>
  71. <artifactId>nexus-staging-maven-plugin</artifactId>
  72. <version>1.6.5</version>
  73. <configuration>
  74. <serverId>ossrh</serverId>
  75. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  76. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-release-plugin</artifactId>
  82. <version>2.5</version>
  83. <configuration>
  84. <autoVersionSubmodules>true</autoVersionSubmodules>
  85. <useReleaseProfile>false</useReleaseProfile>
  86. <releaseProfiles>release</releaseProfiles>
  87. <goals>deploy</goals>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-source-plugin</artifactId>
  92. <version>2.1</version>
  93. <configuration>
  94. <attach>true</attach>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <phase>compile</phase>
  99. <goals>
  100. <goal>jar</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.apache.maven.plugins</groupId>
  107. <artifactId>maven-compiler-plugin</artifactId>
  108. <version>3.0</version>
  109. <configuration>
  110. <source>1.8</source>
  111. <target>1.8</target>
  112. <encoding>UTF-8</encoding>
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>