pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.sales</groupId>
  26. <artifactId>sp-sales-frame</artifactId>
  27. <version>1.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.storlead.sales</groupId>
  31. <artifactId>sp-sales-common</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.storlead.sales</groupId>
  36. <artifactId>sp-sales-wx</artifactId>
  37. <version>1.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.storlead.sales</groupId>
  41. <artifactId>sp-sales-sms</artifactId>
  42. <version>1.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.stylefeng.roses</groupId>
  46. <artifactId>pinyin-sdk-pinyin4j</artifactId>
  47. <version>7.2.3</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>sp-sales-user</finalName>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>3.0</version>
  57. <configuration>
  58. <source>11</source>
  59. <target>11</target>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. <resources>
  64. <resource>
  65. <directory>src/main/resources</directory>
  66. <filtering>true</filtering>
  67. </resource>
  68. <resource>
  69. <directory>src/main/java</directory>
  70. <includes>
  71. <include>**/*.xml</include>
  72. <include>**/*.json</include>
  73. <include>**/*.ftl</include>
  74. </includes>
  75. </resource>
  76. </resources>
  77. </build>
  78. </project>