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. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.6.14</version>
  8. <relativePath/> <!-- lookup parent from repository -->
  9. </parent>
  10. <groupId>com.nokia</groupId>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>pm_interface_5g</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>pm_interface_5g</name>
  15. <description>pm_interface_5g</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-starter-test</artifactId>
  32. <scope>test</scope>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.junit.vintage</groupId>
  36. <artifactId>junit-vintage-engine</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-configuration-processor</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.xuxueli</groupId>
  52. <artifactId>xxl-job-core</artifactId>
  53. <version>2.3.0</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-csv</artifactId>
  59. <version>1.9.0</version>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. <version>2.0.22</version>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
  68. <dependency>
  69. <groupId>com.jcraft</groupId>
  70. <artifactId>jsch</artifactId>
  71. <version>0.1.55</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. <version>3.12.0</version>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <finalName>pmInterface5g</finalName>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <configuration>
  87. <includeSystemScope>true</includeSystemScope>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>