pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <groupId>com.nokia</groupId>
  7. <artifactId>pm_interface</artifactId>
  8. <version>1.0</version>
  9. <parent>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <groupId>org.springframework.boot</groupId>
  12. <version>2.3.0.RELEASE</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <skipTests>true</skipTests>
  19. </properties>
  20. <dependencies>
  21. <!-- <dependency>
  22. <groupId>com.nokia</groupId>
  23. <artifactId>scheduling-core</artifactId>
  24. <version>1.1</version>
  25. </dependency>-->
  26. <dependency>
  27. <groupId>com.jcraft</groupId>
  28. <artifactId>jsch</artifactId>
  29. <version>0.1.55</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.xuxueli</groupId>
  33. <artifactId>xxl-job-core</artifactId>
  34. <version>2.3.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-csv</artifactId>
  39. <version>1.9.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <version>2.6.7</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-autoconfigure</artifactId>
  58. <version>2.3.0.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-maven-plugin</artifactId>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>