pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.0.2</version>
  9. </parent>
  10. <groupId>cn.com.ctop</groupId>
  11. <artifactId>module-check</artifactId>
  12. <version>2.0.2</version>
  13. <name>module-check</name>
  14. <description>Data Check Jar</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-base-common</artifactId>
  22. <version>2.0.2</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.com.ctop</groupId>
  26. <artifactId>module-common</artifactId>
  27. <version>2.0.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.com.ctop</groupId>
  31. <artifactId>module-kuaishou</artifactId>
  32. <version>2.0.2</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.com.ctop</groupId>
  36. <artifactId>module-toutiao</artifactId>
  37. <version>2.0.2</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>