sa-token-parent-1.30.0.pom 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.30.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-core</module>
  34. <module>sa-token-starter</module>
  35. <module>sa-token-plugin</module>
  36. </modules>
  37. <scm>
  38. <connection>scm:git:https://github.com/dromara/sa-token.git</connection>
  39. <developerConnection>scm:git:https://github.com/dromara/sa-token.git</developerConnection>
  40. <tag>master</tag>
  41. <url>https://github.com/dromara/sa-token.git</url>
  42. </scm>
  43. <properties>
  44. <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
  45. <jdk.version>1.8</jdk.version>
  46. <revision>1.30.0</revision>
  47. <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  48. </properties>
  49. <build>
  50. <pluginManagement>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.eclipse.m2e</groupId>
  54. <artifactId>lifecycle-mapping</artifactId>
  55. <version>1.0.0</version>
  56. <configuration>
  57. <lifecycleMappingMetadata>
  58. <pluginExecutions>
  59. <pluginExecution>
  60. <pluginExecutionFilter>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-enforcer-plugin</artifactId>
  63. <versionRange>[1.0.0,)</versionRange>
  64. <goals>
  65. <goal>enforce</goal>
  66. </goals>
  67. </pluginExecutionFilter>
  68. <action>
  69. <ignore />
  70. </action>
  71. </pluginExecution>
  72. </pluginExecutions>
  73. </lifecycleMappingMetadata>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </pluginManagement>
  78. <plugins>
  79. <plugin>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.2</version>
  82. <configuration>
  83. <source>1.8</source>
  84. <target>1.8</target>
  85. <encoding>UTF-8</encoding>
  86. </configuration>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.codehaus.mojo</groupId>
  90. <artifactId>flatten-maven-plugin</artifactId>
  91. <version>1.2.7</version>
  92. <executions>
  93. <execution>
  94. <id>flatten</id>
  95. <phase>process-resources</phase>
  96. <goals>
  97. <goal>flatten</goal>
  98. </goals>
  99. </execution>
  100. <execution>
  101. <id>flatten.clean</id>
  102. <phase>clean</phase>
  103. <goals>
  104. <goal>clean</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. <configuration>
  109. <updatePomFile>true</updatePomFile>
  110. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>