pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-system</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-system-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-system-biz</name>
  15. <description>系统域实现:Mapper、Service 实现、AOP、配置与工具。</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-system-spi</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.storlead.boot</groupId>
  23. <artifactId>storlead-user-spi</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.jsonwebtoken</groupId>
  27. <artifactId>jjwt</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.core</groupId>
  31. <artifactId>jackson-databind</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.storlead.boot</groupId>
  35. <artifactId>storlead-mybatis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.storlead.boot</groupId>
  39. <artifactId>storlead-common</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.storlead.boot</groupId>
  43. <artifactId>storlead-auth</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.storlead.boot</groupId>
  47. <artifactId>storlead-redis</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.storlead.boot</groupId>
  51. <artifactId>storlead-web</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <finalName>storlead-system-biz</finalName>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.0</version>
  61. <configuration>
  62. <source>11</source>
  63. <target>11</target>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. <resources>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. <filtering>true</filtering>
  71. </resource>
  72. </resources>
  73. </build>
  74. </project>