多媒体屏后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
3.0 KiB

  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>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.6.2</version>
  10. <relativePath/> <!-- 始终从仓库获取 -->
  11. </parent>
  12. <groupId>com.canvas.web</groupId>
  13. <artifactId>yxk_canvasScreen</artifactId>
  14. <packaging>pom</packaging>
  15. <version>1.0-SNAPSHOT</version>
  16. <modules>
  17. <module>admin</module>
  18. <module>common</module>
  19. <module>generator</module>
  20. <module>quartz</module>
  21. <module>queue</module>
  22. <module>system</module>
  23. </modules>
  24. <name>多媒体后台管理系统</name>
  25. <properties>
  26. <maven.compiler.source>17</maven.compiler.source>
  27. <maven.compiler.target>17</maven.compiler.target>
  28. <!-- 表示打包时跳过mvn test -->
  29. <maven.test.skip>true</maven.test.skip>
  30. <!--全局配置项目版本号-->
  31. <version>1.0-SNAPSHOT</version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- 子模块依赖 -->
  36. <dependency>
  37. <groupId>com.javaweb</groupId>
  38. <artifactId>javaweb-common</artifactId>
  39. <version>${version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.javaweb</groupId>
  43. <artifactId>javaweb-generator</artifactId>
  44. <version>${version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.javaweb</groupId>
  48. <artifactId>javaweb-system</artifactId>
  49. <version>${version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.javaweb</groupId>
  53. <artifactId>javaweb-admin</artifactId>
  54. <version>${version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.javaweb</groupId>
  58. <artifactId>javaweb-quartz</artifactId>
  59. <version>${version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.javaweb</groupId>
  63. <artifactId>javaweb-queue</artifactId>
  64. <version>${version}</version>
  65. </dependency>
  66. <!-- 第三方依赖 -->
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. <version>1.18.10</version>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>1.2.62</version>
  77. </dependency>
  78. </dependencies>
  79. </dependencyManagement>
  80. </project>