pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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-web</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>storlead-system-biz</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. </resources>
  69. </build>
  70. </project>