pom.xml 1.9 KB

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