pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <parent>
  6. <artifactId>storlead-saas-platform</artifactId>
  7. <groupId>com.storlead.boot</groupId>
  8. <version>1.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>storlead-user</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-user</name>
  15. <version>1.0</version>
  16. <description>common project for Spring Boot</description>
  17. <dependencies>
  18. <!-- jwt 需要,移除会报错 -->
  19. <dependency>
  20. <groupId>io.jsonwebtoken</groupId>
  21. <artifactId>jjwt</artifactId>
  22. <version>${io.jsonwebtoken.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.storlead.boot</groupId>
  26. <artifactId>storlead-mybatis</artifactId>
  27. <version>1.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.storlead.boot</groupId>
  31. <artifactId>storlead-common</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.storlead.boot</groupId>
  36. <artifactId>storlead-thirdparty-api</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.stylefeng.roses</groupId>
  40. <artifactId>pinyin-sdk-pinyin4j</artifactId>
  41. <version>7.2.3</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <finalName>sp-sales-user</finalName>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <version>3.0</version>
  51. <configuration>
  52. <source>11</source>
  53. <target>11</target>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. <resources>
  58. <resource>
  59. <directory>src/main/resources</directory>
  60. <filtering>true</filtering>
  61. </resource>
  62. <resource>
  63. <directory>src/main/java</directory>
  64. <includes>
  65. <include>**/*.xml</include>
  66. <include>**/*.json</include>
  67. <include>**/*.ftl</include>
  68. </includes>
  69. </resource>
  70. </resources>
  71. </build>
  72. </project>