pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. </dependencies>
  49. </dependencyManagement>
  50. <modules>
  51. <module>py-starter</module>
  52. <module>py-base</module>
  53. </modules>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.1</version>
  60. <configuration>
  61. <source>${java.version}</source>
  62. <target>${java.version}</target>
  63. <encoding>${project.build.sourceEncoding}</encoding>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>