mapstruct-plus-pom-1.3.5.pom 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.github.linpeilie</groupId>
  6. <artifactId>mapstruct-plus-pom</artifactId>
  7. <version>1.3.5</version>
  8. <packaging>pom</packaging>
  9. <name>Mapstruct Plus</name>
  10. <description>mapstruct增强工具包</description>
  11. <url>${projectUrl}</url>
  12. <licenses>
  13. <license>
  14. <name>The Apache Software License, Version 2.0</name>
  15. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  16. <distribution>repo,manual</distribution>
  17. </license>
  18. </licenses>
  19. <developers>
  20. <developer>
  21. <name>linpeilie</name>
  22. <email>linpeilie@qq.com</email>
  23. <url>${projectUrl}</url>
  24. </developer>
  25. </developers>
  26. <modules>
  27. <module>mapstruct-plus</module>
  28. <module>mapstruct-plus-spring-boot-starter</module>
  29. <module>mapstruct-plus-processor</module>
  30. </modules>
  31. <scm>
  32. <connection>${projectUrl}</connection>
  33. <developerConnection>${projectUrl}</developerConnection>
  34. <url>${projectUrl}</url>
  35. </scm>
  36. <distributionManagement>
  37. <snapshotRepository>
  38. <id>ossrh</id>
  39. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  40. </snapshotRepository>
  41. </distributionManagement>
  42. <properties>
  43. <projectUrl>https://github.com/linpeilie/mapstruct-plus.git</projectUrl>
  44. <hutool.version>5.8.15</hutool.version>
  45. <mapstruct-plus.version>1.3.5</mapstruct-plus.version>
  46. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  47. <maven.compiler.source>8</maven.compiler.source>
  48. <maven.compiler.target>8</maven.compiler.target>
  49. <mapstruct.version>1.5.5.Final</mapstruct.version>
  50. </properties>
  51. <dependencyManagement>
  52. <dependencies>
  53. <dependency>
  54. <groupId>io.github.linpeilie</groupId>
  55. <artifactId>mapstruct-plus</artifactId>
  56. <version>${mapstruct-plus.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.github.linpeilie</groupId>
  60. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  61. <version>${mapstruct-plus.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.baidu.lbsyun</groupId>
  65. <artifactId>javapoet</artifactId>
  66. <version>1.9.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-lang3</artifactId>
  71. <version>3.12.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mapstruct</groupId>
  75. <artifactId>mapstruct</artifactId>
  76. <version>${mapstruct.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.mapstruct</groupId>
  80. <artifactId>mapstruct-processor</artifactId>
  81. <version>${mapstruct.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-core</artifactId>
  86. <version>5.3.23</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.hutool</groupId>
  90. <artifactId>hutool-core</artifactId>
  91. <version>${hutool.version}</version>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <build>
  96. <pluginManagement>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.codehaus.mojo</groupId>
  100. <artifactId>flatten-maven-plugin</artifactId>
  101. <version>1.1.0</version>
  102. <executions>
  103. <execution>
  104. <id>flatten</id>
  105. <phase>process-resources</phase>
  106. <goals>
  107. <goal>flatten</goal>
  108. </goals>
  109. </execution>
  110. <execution>
  111. <id>flatten.clean</id>
  112. <phase>clean</phase>
  113. <goals>
  114. <goal>clean</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. <configuration>
  119. <updatePomFile>true</updatePomFile>
  120. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </pluginManagement>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.codehaus.mojo</groupId>
  128. <artifactId>flatten-maven-plugin</artifactId>
  129. <version>1.1.0</version>
  130. </plugin>
  131. <plugin>
  132. <artifactId>maven-deploy-plugin</artifactId>
  133. <version>2.8.2</version>
  134. </plugin>
  135. <plugin>
  136. <groupId>org.sonatype.plugins</groupId>
  137. <artifactId>nexus-staging-maven-plugin</artifactId>
  138. <version>1.6.13</version>
  139. <extensions>true</extensions>
  140. <dependencies>
  141. <dependency>
  142. <groupId>com.thoughtworks.xstream</groupId>
  143. <artifactId>xstream</artifactId>
  144. <version>1.4.20</version>
  145. </dependency>
  146. </dependencies>
  147. <configuration>
  148. <serverId>ossrh</serverId>
  149. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  150. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <profiles>
  156. <profile>
  157. <id>deploy</id>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <artifactId>maven-javadoc-plugin</artifactId>
  162. <version>2.10.4</version>
  163. <executions>
  164. <execution>
  165. <id>attach-javadocs</id>
  166. <goals>
  167. <goal>jar</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. </plugin>
  172. <plugin>
  173. <artifactId>maven-source-plugin</artifactId>
  174. <version>2.4</version>
  175. <executions>
  176. <execution>
  177. <id>attach-sources</id>
  178. <goals>
  179. <goal>jar-no-fork</goal>
  180. </goals>
  181. </execution>
  182. </executions>
  183. </plugin>
  184. <plugin>
  185. <artifactId>maven-gpg-plugin</artifactId>
  186. <version>1.6</version>
  187. <executions>
  188. <execution>
  189. <id>sign-artifacts</id>
  190. <phase>verify</phase>
  191. <goals>
  192. <goal>sign</goal>
  193. </goals>
  194. <configuration>
  195. <gpgArguments>
  196. <arg>--pinentry-mode</arg>
  197. <arg>loopback</arg>
  198. </gpgArguments>
  199. </configuration>
  200. </execution>
  201. </executions>
  202. </plugin>
  203. </plugins>
  204. </build>
  205. </profile>
  206. </profiles>
  207. </project>