pom.xml 4.0 KB

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