pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>openfeign</module>
  16. <module>insurance</module>
  17. <module>costsorrule</module>
  18. </modules>
  19. <dependencies>
  20. <dependency>
  21. <groupId>mysql</groupId>
  22. <artifactId>mysql-connector-java</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-extension</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.jzg</groupId>
  38. <artifactId>commons</artifactId>
  39. <version>1.0-SNAPSHOT</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.rocketmq</groupId>
  48. <artifactId>rocketmq-spring-boot-starter</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.jzg</groupId>
  52. <artifactId>rocketmq</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <dependencyManagement>
  56. </dependencyManagement>
  57. <build>
  58. <plugins>
  59. <!-- <plugin>-->
  60. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  61. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  62. <!-- <version>3.3.0</version>-->
  63. <!-- <configuration>-->
  64. <!-- <outputDirectory>${project.parent.basedir}/target</outputDirectory>-->
  65. <!-- </configuration>-->
  66. <!-- </plugin>-->
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.13.0</version>
  71. <configuration>
  72. <source>17</source>
  73. <target>17</target>
  74. <encoding>UTF-8</encoding>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>