pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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.3.5.RELEASE</version>
  10. </parent>
  11. <groupId>com.poyee</groupId>
  12. <artifactId>poyee-dashboard</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>dashboard</name>
  16. <description>大屏数据系统</description>
  17. <properties>
  18. <module.version>1.0-SNAPSHOT</module.version>
  19. <java.version>1.8</java.version>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <springboot.version>2.3.5.RELEASE</springboot.version>
  23. <druid.version>1.2.1</druid.version>
  24. <commons.io.version>2.5</commons.io.version>
  25. <fastjson.version>1.2.74</fastjson.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <version>${springboot.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <version>1.18.12</version>
  37. <optional>true</optional>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <!--base-->
  43. <dependency>
  44. <groupId>com.poyee</groupId>
  45. <artifactId>py-base</artifactId>
  46. <version>${module.version}</version>
  47. </dependency>
  48. <!--data-->
  49. <dependency>
  50. <groupId>com.poyee</groupId>
  51. <artifactId>py-data</artifactId>
  52. <version>${module.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.poyee</groupId>
  56. <artifactId>py-system</artifactId>
  57. <version>${module.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.poyee</groupId>
  61. <artifactId>py-task</artifactId>
  62. <version>${module.version}</version>
  63. </dependency>
  64. </dependencies>
  65. </dependencyManagement>
  66. <modules>
  67. <module>py-starter</module>
  68. <module>py-base</module>
  69. <module>py-data</module>
  70. <module>py-system</module>
  71. <module>py-task</module>
  72. </modules>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.1</version>
  79. <configuration>
  80. <source>${java.version}</source>
  81. <target>${java.version}</target>
  82. <encoding>${project.build.sourceEncoding}</encoding>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>