sa-token-parent-1.34.0.pom 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.34.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-core</module>
  35. <module>sa-token-starter</module>
  36. <module>sa-token-plugin</module>
  37. </modules>
  38. <scm>
  39. <connection>scm:git:https://github.com/dromara/sa-token.git</connection>
  40. <developerConnection>scm:git:https://github.com/dromara/sa-token.git</developerConnection>
  41. <tag>master</tag>
  42. <url>https://github.com/dromara/sa-token.git</url>
  43. </scm>
  44. <properties>
  45. <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  46. <jdk.version>1.8</jdk.version>
  47. <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
  48. <revision>1.34.0</revision>
  49. </properties>
  50. <dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>cn.dev33</groupId>
  54. <artifactId>sa-token-dependencies</artifactId>
  55. <version>${project.version}</version>
  56. <type>pom</type>
  57. <scope>import</scope>
  58. </dependency>
  59. </dependencies>
  60. </dependencyManagement>
  61. <build>
  62. <pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.eclipse.m2e</groupId>
  66. <artifactId>lifecycle-mapping</artifactId>
  67. <version>1.0.0</version>
  68. <configuration>
  69. <lifecycleMappingMetadata>
  70. <pluginExecutions>
  71. <pluginExecution>
  72. <pluginExecutionFilter>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-enforcer-plugin</artifactId>
  75. <versionRange>[1.0.0,)</versionRange>
  76. <goals>
  77. <goal>enforce</goal>
  78. </goals>
  79. </pluginExecutionFilter>
  80. <action>
  81. <ignore />
  82. </action>
  83. </pluginExecution>
  84. </pluginExecutions>
  85. </lifecycleMappingMetadata>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </pluginManagement>
  90. <plugins>
  91. <plugin>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <version>3.10.1</version>
  94. <configuration>
  95. <source>1.8</source>
  96. <target>1.8</target>
  97. <encoding>UTF-8</encoding>
  98. </configuration>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-javadoc-plugin</artifactId>
  102. <version>2.10.3</version>
  103. <executions>
  104. <execution>
  105. <id>attach-javadocs</id>
  106. <goals>
  107. <goal>jar</goal>
  108. </goals>
  109. <configuration>
  110. <additionalparam>-Xdoclint:none</additionalparam>
  111. </configuration>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.codehaus.mojo</groupId>
  117. <artifactId>flatten-maven-plugin</artifactId>
  118. <version>1.2.7</version>
  119. <executions>
  120. <execution>
  121. <id>flatten</id>
  122. <phase>process-resources</phase>
  123. <goals>
  124. <goal>flatten</goal>
  125. </goals>
  126. </execution>
  127. <execution>
  128. <id>flatten.clean</id>
  129. <phase>clean</phase>
  130. <goals>
  131. <goal>clean</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. <configuration>
  136. <updatePomFile>true</updatePomFile>
  137. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  138. </configuration>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>