1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.persagy</groupId>
- <artifactId>adm-business</artifactId>
- <version>1.0.0</version>
- </parent>
- <groupId>com.persagy</groupId>
- <artifactId>adm-server</artifactId>
- <dependencies>
- <!-- 配置中心(包含注册中心) -->
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>integrated-config-client</artifactId>
- </dependency>
- <!-- 项目启动 -->
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-server</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-digital-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-file-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-amqp-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.locationtech.jts</groupId>
- <artifactId>jts-core</artifactId>
- <version>1.16.1</version>
- </dependency>
- </dependencies>
- <!-- <build>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.mybatis.generator</groupId>-->
- <!-- <artifactId>mybatis-generator-maven-plugin</artifactId>-->
- <!-- <version>1.3.2</version>-->
- <!-- <configuration>-->
- <!-- <configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml</configurationFile>-->
- <!-- <verbose>true</verbose>-->
- <!-- <overwrite>true</overwrite>-->
- <!-- </configuration>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <id>Generate MyBatis Artifacts</id>-->
- <!-- <goals>-->
- <!-- <goal>generate</goal>-->
- <!-- </goals>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- <dependencies>-->
- <!-- <dependency>-->
- <!-- <groupId>mysql</groupId>-->
- <!-- <artifactId>mysql-connector-java</artifactId>-->
- <!-- <version>8.0.15</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.mybatis.generator</groupId>-->
- <!-- <artifactId>mybatis-generator-core</artifactId>-->
- <!-- <version>1.3.2</version>-->
- <!-- </dependency>-->
- <!-- </dependencies>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- </project>
|