mapstruct-plus-pom-1.4.6.pom 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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.4.6</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. <module>mapstruct-plus-object-convert</module>
  31. </modules>
  32. <scm>
  33. <connection>${projectUrl}</connection>
  34. <developerConnection>${projectUrl}</developerConnection>
  35. <url>${projectUrl}</url>
  36. </scm>
  37. <distributionManagement>
  38. <snapshotRepository>
  39. <id>ossrh</id>
  40. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  41. </snapshotRepository>
  42. </distributionManagement>
  43. <properties>
  44. <projectUrl>https://github.com/linpeilie/mapstruct-plus.git</projectUrl>
  45. <hutool.version>5.8.26</hutool.version>
  46. <mapstruct-plus.version>1.4.6</mapstruct-plus.version>
  47. <gem.version>1.0.0.Alpha3</gem.version>
  48. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  49. <maven.compiler.source>8</maven.compiler.source>
  50. <maven.compiler.target>8</maven.compiler.target>
  51. <mapstruct.version>1.5.5.Final</mapstruct.version>
  52. </properties>
  53. <dependencyManagement>
  54. <dependencies>
  55. <dependency>
  56. <groupId>io.github.linpeilie</groupId>
  57. <artifactId>mapstruct-plus-object-convert</artifactId>
  58. <version>${mapstruct-plus.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.github.linpeilie</groupId>
  62. <artifactId>mapstruct-plus</artifactId>
  63. <version>${mapstruct-plus.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.github.linpeilie</groupId>
  67. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  68. <version>${mapstruct-plus.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baidu.lbsyun</groupId>
  72. <artifactId>javapoet</artifactId>
  73. <version>1.9.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mapstruct</groupId>
  77. <artifactId>mapstruct</artifactId>
  78. <version>${mapstruct.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mapstruct</groupId>
  82. <artifactId>mapstruct-processor</artifactId>
  83. <version>${mapstruct.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework</groupId>
  87. <artifactId>spring-core</artifactId>
  88. <version>5.3.23</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>cn.hutool</groupId>
  92. <artifactId>hutool-core</artifactId>
  93. <version>${hutool.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mapstruct.tools.gem</groupId>
  97. <artifactId>gem-api</artifactId>
  98. <version>${gem.version}</version>
  99. </dependency>
  100. </dependencies>
  101. </dependencyManagement>
  102. <build>
  103. <pluginManagement>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.codehaus.mojo</groupId>
  107. <artifactId>flatten-maven-plugin</artifactId>
  108. <version>1.1.0</version>
  109. <executions>
  110. <execution>
  111. <id>flatten</id>
  112. <phase>process-resources</phase>
  113. <goals>
  114. <goal>flatten</goal>
  115. </goals>
  116. </execution>
  117. <execution>
  118. <id>flatten.clean</id>
  119. <phase>clean</phase>
  120. <goals>
  121. <goal>clean</goal>
  122. </goals>
  123. </execution>
  124. </executions>
  125. <configuration>
  126. <updatePomFile>true</updatePomFile>
  127. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  128. </configuration>
  129. </plugin>
  130. </plugins>
  131. </pluginManagement>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.codehaus.mojo</groupId>
  135. <artifactId>flatten-maven-plugin</artifactId>
  136. <version>1.1.0</version>
  137. </plugin>
  138. <plugin>
  139. <artifactId>maven-deploy-plugin</artifactId>
  140. <version>2.8.2</version>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.sonatype.plugins</groupId>
  144. <artifactId>nexus-staging-maven-plugin</artifactId>
  145. <version>1.6.13</version>
  146. <extensions>true</extensions>
  147. <dependencies>
  148. <dependency>
  149. <groupId>com.thoughtworks.xstream</groupId>
  150. <artifactId>xstream</artifactId>
  151. <version>1.4.20</version>
  152. </dependency>
  153. </dependencies>
  154. <configuration>
  155. <serverId>ossrh</serverId>
  156. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  157. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  158. </configuration>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. <profiles>
  163. <profile>
  164. <id>deploy</id>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <artifactId>maven-javadoc-plugin</artifactId>
  169. <version>2.10.4</version>
  170. <executions>
  171. <execution>
  172. <id>attach-javadocs</id>
  173. <goals>
  174. <goal>jar</goal>
  175. </goals>
  176. </execution>
  177. </executions>
  178. </plugin>
  179. <plugin>
  180. <artifactId>maven-source-plugin</artifactId>
  181. <version>2.4</version>
  182. <executions>
  183. <execution>
  184. <id>attach-sources</id>
  185. <goals>
  186. <goal>jar-no-fork</goal>
  187. </goals>
  188. </execution>
  189. </executions>
  190. </plugin>
  191. <plugin>
  192. <artifactId>maven-gpg-plugin</artifactId>
  193. <version>1.6</version>
  194. <executions>
  195. <execution>
  196. <id>sign-artifacts</id>
  197. <phase>verify</phase>
  198. <goals>
  199. <goal>sign</goal>
  200. </goals>
  201. <configuration>
  202. <gpgArguments>
  203. <arg>--pinentry-mode</arg>
  204. <arg>loopback</arg>
  205. </gpgArguments>
  206. </configuration>
  207. </execution>
  208. </executions>
  209. </plugin>
  210. </plugins>
  211. </build>
  212. </profile>
  213. </profiles>
  214. </project>