sa-token-parent-1.38.0.pom 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <parent>
  6. <groupId>org.sonatype.oss</groupId>
  7. <artifactId>oss-parent</artifactId>
  8. <version>7</version>
  9. <relativePath></relativePath>
  10. </parent>
  11. <groupId>cn.dev33</groupId>
  12. <artifactId>sa-token-parent</artifactId>
  13. <version>1.38.0</version>
  14. <packaging>pom</packaging>
  15. <name>sa-token</name>
  16. <description>A Java Web lightweight authority authentication framework, comprehensive function, easy to use</description>
  17. <url>https://github.com/dromara/sa-token</url>
  18. <licenses>
  19. <license>
  20. <name>Apache 2</name>
  21. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  22. <distribution>repo</distribution>
  23. <comments>A business-friendly OSS license</comments>
  24. </license>
  25. </licenses>
  26. <developers>
  27. <developer>
  28. <name>shengzhang</name>
  29. <email>2393584716@qq.com</email>
  30. </developer>
  31. </developers>
  32. <modules>
  33. <module>sa-token-dependencies</module>
  34. <module>sa-token-bom</module>
  35. <module>sa-token-core</module>
  36. <module>sa-token-starter</module>
  37. <module>sa-token-plugin</module>
  38. </modules>
  39. <scm>
  40. <connection>scm:git:https://github.com/dromara/sa-token.git</connection>
  41. <developerConnection>scm:git:https://github.com/dromara/sa-token.git</developerConnection>
  42. <tag>master</tag>
  43. <url>https://github.com/dromara/sa-token.git</url>
  44. </scm>
  45. <properties>
  46. <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  47. <jdk.version>1.8</jdk.version>
  48. <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
  49. <revision>1.38.0</revision>
  50. </properties>
  51. <dependencyManagement>
  52. <dependencies>
  53. <dependency>
  54. <groupId>cn.dev33</groupId>
  55. <artifactId>sa-token-dependencies</artifactId>
  56. <version>${project.version}</version>
  57. <type>pom</type>
  58. <scope>import</scope>
  59. </dependency>
  60. </dependencies>
  61. </dependencyManagement>
  62. <build>
  63. <pluginManagement>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.eclipse.m2e</groupId>
  67. <artifactId>lifecycle-mapping</artifactId>
  68. <version>1.0.0</version>
  69. <configuration>
  70. <lifecycleMappingMetadata>
  71. <pluginExecutions>
  72. <pluginExecution>
  73. <pluginExecutionFilter>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-enforcer-plugin</artifactId>
  76. <versionRange>[1.0.0,)</versionRange>
  77. <goals>
  78. <goal>enforce</goal>
  79. </goals>
  80. </pluginExecutionFilter>
  81. <action>
  82. <ignore />
  83. </action>
  84. </pluginExecution>
  85. </pluginExecutions>
  86. </lifecycleMappingMetadata>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </pluginManagement>
  91. <plugins>
  92. <plugin>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. <version>3.10.1</version>
  95. <configuration>
  96. <source>1.8</source>
  97. <target>1.8</target>
  98. <encoding>UTF-8</encoding>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <artifactId>maven-javadoc-plugin</artifactId>
  103. <version>2.10.3</version>
  104. <executions>
  105. <execution>
  106. <id>attach-javadocs</id>
  107. <goals>
  108. <goal>jar</goal>
  109. </goals>
  110. <configuration>
  111. <additionalparam>-Xdoclint:none</additionalparam>
  112. </configuration>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.codehaus.mojo</groupId>
  118. <artifactId>flatten-maven-plugin</artifactId>
  119. <version>1.2.7</version>
  120. <executions>
  121. <execution>
  122. <id>flatten</id>
  123. <phase>process-resources</phase>
  124. <goals>
  125. <goal>flatten</goal>
  126. </goals>
  127. </execution>
  128. <execution>
  129. <id>flatten.clean</id>
  130. <phase>clean</phase>
  131. <goals>
  132. <goal>clean</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. <configuration>
  137. <updatePomFile>true</updatePomFile>
  138. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>