pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jzg</groupId>
  6. <artifactId>jzg</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>tenant</artifactId>
  10. <packaging>pom</packaging>
  11. <name>tenant Maven Webapp</name>
  12. <url>http://maven.apache.org</url>
  13. <modules>
  14. <module>organization</module>
  15. <module>insurance</module>
  16. <module>costsorrule</module>
  17. </modules>
  18. <dependencies>
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-extension</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.jzg</groupId>
  37. <artifactId>commons</artifactId>
  38. <version>1.0-SNAPSHOT</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.projectlombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.rocketmq</groupId>
  47. <artifactId>rocketmq-spring-boot-starter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.jzg</groupId>
  51. <artifactId>rocketmq</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <dependencyManagement>
  55. </dependencyManagement>
  56. <build>
  57. <plugins>
  58. <!-- <plugin>-->
  59. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  60. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  61. <!-- <version>3.3.0</version>-->
  62. <!-- <configuration>-->
  63. <!-- <outputDirectory>${project.parent.basedir}/target</outputDirectory>-->
  64. <!-- </configuration>-->
  65. <!-- </plugin>-->
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.13.0</version>
  70. <configuration>
  71. <source>17</source>
  72. <target>17</target>
  73. <encoding>UTF-8</encoding>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>