pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.storlead.boot</groupId>
  8. <artifactId>storlead-user</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-user-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-user-biz</name>
  15. <description>用户域实现:Mapper、Service 实现、工具与自动配置。</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-user-spi</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.jsonwebtoken</groupId>
  23. <artifactId>jjwt</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.storlead.boot</groupId>
  27. <artifactId>storlead-mybatis</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.storlead.boot</groupId>
  31. <artifactId>storlead-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.storlead.boot</groupId>
  35. <artifactId>storlead-thirdparty-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.storlead.boot</groupId>
  39. <artifactId>storlead-thirdparty-biz</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.stylefeng.roses</groupId>
  43. <artifactId>pinyin-sdk-pinyin4j</artifactId>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <finalName>storlead-user-biz</finalName>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <version>3.0</version>
  53. <configuration>
  54. <source>11</source>
  55. <target>11</target>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. <resources>
  60. <resource>
  61. <directory>src/main/resources</directory>
  62. <filtering>true</filtering>
  63. </resource>
  64. </resources>
  65. </build>
  66. </project>