pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.persagy</groupId>
  8. <artifactId>adm-business</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>com.persagy</groupId>
  12. <artifactId>adm-server</artifactId>
  13. <dependencies>
  14. <!-- 配置中心(包含注册中心) -->
  15. <dependency>
  16. <groupId>com.persagy</groupId>
  17. <artifactId>integrated-config-client</artifactId>
  18. </dependency>
  19. <!-- 项目启动 -->
  20. <dependency>
  21. <groupId>com.persagy</groupId>
  22. <artifactId>dmp-server</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.persagy</groupId>
  26. <artifactId>dmp-mybatis</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.persagy</groupId>
  30. <artifactId>dmp-digital-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.persagy</groupId>
  34. <artifactId>dmp-file-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.persagy</groupId>
  38. <artifactId>dmp-amqp-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.locationtech.jts</groupId>
  42. <artifactId>jts-core</artifactId>
  43. <version>1.16.1</version>
  44. </dependency>
  45. </dependencies>
  46. <!-- <build>-->
  47. <!-- <plugins>-->
  48. <!-- <plugin>-->
  49. <!-- <groupId>org.mybatis.generator</groupId>-->
  50. <!-- <artifactId>mybatis-generator-maven-plugin</artifactId>-->
  51. <!-- <version>1.3.2</version>-->
  52. <!-- <configuration>-->
  53. <!-- <configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml</configurationFile>-->
  54. <!-- <verbose>true</verbose>-->
  55. <!-- <overwrite>true</overwrite>-->
  56. <!-- </configuration>-->
  57. <!-- <executions>-->
  58. <!-- <execution>-->
  59. <!-- <id>Generate MyBatis Artifacts</id>-->
  60. <!-- <goals>-->
  61. <!-- <goal>generate</goal>-->
  62. <!-- </goals>-->
  63. <!-- </execution>-->
  64. <!-- </executions>-->
  65. <!-- <dependencies>-->
  66. <!-- <dependency>-->
  67. <!-- <groupId>mysql</groupId>-->
  68. <!-- <artifactId>mysql-connector-java</artifactId>-->
  69. <!-- <version>8.0.15</version>-->
  70. <!-- </dependency>-->
  71. <!-- <dependency>-->
  72. <!-- <groupId>org.mybatis.generator</groupId>-->
  73. <!-- <artifactId>mybatis-generator-core</artifactId>-->
  74. <!-- <version>1.3.2</version>-->
  75. <!-- </dependency>-->
  76. <!-- </dependencies>-->
  77. <!-- </plugin>-->
  78. <!-- </plugins>-->
  79. <!-- </build>-->
  80. </project>