pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.tofly</groupId>
  6. <artifactId>tofly-njsw</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>njsw-gps-api</module>
  13. <module>njsw-gps-boot</module>
  14. </modules>
  15. <artifactId>njsw-gps</artifactId>
  16. <version>1.0.0</version>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.tofly</groupId>
  20. <artifactId>common-es</artifactId>
  21. <version>1.0.3</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-core</artifactId>
  26. </exclusion>
  27. <exclusion>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-extension</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tofly</groupId>
  35. <artifactId>common-redis</artifactId>
  36. <version>1.0.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.3.2</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.haiqiu.tools</groupId>
  46. <artifactId>hq-all-tools</artifactId>
  47. <version>1.1</version>
  48. </dependency>
  49. </dependencies>
  50. </project>