pom.xml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.7.18</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <artifactId>siteinfo</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>siteinfo_update</name>
  14. <description>siteinfo_update</description>
  15. <properties>
  16. <java.version>8</java.version>
  17. <maven.compiler.source>${java.version}</maven.compiler.source>
  18. <maven.compiler.target>${java.version}</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
  21. <skipTests>true</skipTests>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>org.junit.vintage</groupId>
  35. <artifactId>junit-vintage-engine</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-configuration-processor</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.xuxueli</groupId>
  51. <artifactId>xxl-job-core</artifactId>
  52. <version>2.3.0</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-csv</artifactId>
  58. <version>1.10.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-jdbc</artifactId>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  65. <dependency>
  66. <groupId>org.postgresql</groupId>
  67. <artifactId>postgresql</artifactId>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-exec -->
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-exec</artifactId>
  73. <version>1.4.0</version>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <finalName>site_info</finalName>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. <configuration>
  83. <excludes>
  84. <exclude>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. </exclude>
  88. </excludes>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>