| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.jzg</groupId>
- <artifactId>jzg</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>tenant</artifactId>
- <packaging>pom</packaging>
- <name>tenant Maven Webapp</name>
- <url>http://maven.apache.org</url>
- <modules>
- <module>organization</module>
- <module>openfeign</module>
- <module>insurance</module>
- <module>costsorrule</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jzg</groupId>
- <artifactId>commons</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.rocketmq</groupId>
- <artifactId>rocketmq-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jzg</groupId>
- <artifactId>rocketmq</artifactId>
- </dependency>
- </dependencies>
- <dependencyManagement>
- </dependencyManagement>
- <build>
- <plugins>
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-jar-plugin</artifactId>-->
- <!-- <version>3.3.0</version>-->
- <!-- <configuration>-->
- <!-- <outputDirectory>${project.parent.basedir}/target</outputDirectory>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.13.0</version>
- <configuration>
- <source>17</source>
- <target>17</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|