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.

84 lines
3.2 KiB

2 years ago
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.javaweb</groupId>
  12. <artifactId>javaweb</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>javaweb</name>
  16. <description>Demo project for Spring Boot</description>
  17. <modules>
  18. <!-- <module>javaweb-common</module>-->
  19. <!-- <module>javaweb-generator</module>-->
  20. <!-- <module>javaweb-system</module>-->
  21. <module>javaweb-admin</module>
  22. <!-- <module>javaweb-quartz</module>-->
  23. <!-- <module>javaweb-api</module>-->
  24. </modules>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. <!--全局配置项目版本号-->
  28. <version>0.0.1-SNAPSHOT</version>
  29. </properties>
  30. <!-- 依赖声明 -->
  31. <dependencyManagement>
  32. <dependencies>
  33. <!-- 子模块依赖 -->
  34. <!-- <dependency>-->
  35. <!-- <groupId>com.javaweb</groupId>-->
  36. <!-- <artifactId>javaweb-common</artifactId>-->
  37. <!-- <version>${version}</version>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.javaweb</groupId>-->
  41. <!-- <artifactId>javaweb-generator</artifactId>-->
  42. <!-- <version>${version}</version>-->
  43. <!-- </dependency>-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>com.javaweb</groupId>-->
  46. <!-- <artifactId>javaweb-system</artifactId>-->
  47. <!-- <version>${version}</version>-->
  48. <!-- </dependency>-->
  49. <dependency>
  50. <groupId>com.javaweb</groupId>
  51. <artifactId>javaweb-admin</artifactId>
  52. <version>${version}</version>
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>com.javaweb</groupId>-->
  56. <!-- <artifactId>javaweb-quartz</artifactId>-->
  57. <!-- <version>${version}</version>-->
  58. <!-- </dependency>-->
  59. <!-- <dependency>-->
  60. <!-- <groupId>com.javaweb</groupId>-->
  61. <!-- <artifactId>javaweb-api</artifactId>-->
  62. <!-- <version>${version}</version>-->
  63. <!-- </dependency>-->
  64. <!-- 第三方依赖 -->
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>1.18.24</version>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>1.2.76</version>
  75. </dependency>
  76. </dependencies>
  77. </dependencyManagement>
  78. </project>