pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <packaging>pom</packaging>
  7. <modules>
  8. <module>toktok-core</module>
  9. <module>toktok-app</module>
  10. <module>toktok-admin</module>
  11. <module>toktok-task</module>
  12. </modules>
  13. <parent>
  14. <groupId>com.sp.toktok-parent</groupId>
  15. <artifactId>sp-parent</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. <relativePath>../sp-parent/pom.xml</relativePath>
  18. </parent>
  19. <groupId>com.sp.toktok</groupId>
  20. <artifactId>toktok-parent</artifactId>
  21. <version>1.0</version>
  22. <properties>
  23. <maven.compiler.source>8</maven.compiler.source>
  24. <maven.compiler.target>8</maven.compiler.target>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.jthinking.common</groupId>
  30. <artifactId>ip-info</artifactId>
  31. <version>2.1.7</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sp.toktok</groupId>
  35. <artifactId>toktok-core</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger2</artifactId>
  41. <version>2.9.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.xiaoymin</groupId>
  45. <artifactId>swagger-bootstrap-ui</artifactId>
  46. <version>1.9.6</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-fileupload</groupId>
  50. <artifactId>commons-fileupload</artifactId>
  51. <version>1.3.3</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. </project>