pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.3.1.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.uas</groupId>
  12. <artifactId>hsl</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>hsl</name>
  15. <description>金好得EDI</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.junit.vintage</groupId>
  31. <artifactId>junit-vintage-engine</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.junit.vintage</groupId>
  42. <artifactId>junit-vintage-engine</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.oracle.ojdbc</groupId>
  48. <artifactId>ojdbc8</artifactId>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpcore</artifactId>
  55. <version>4.4.13</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.codehaus.jackson</groupId>
  59. <artifactId>jackson-mapper-asl</artifactId>
  60. <version>1.9.13</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>log4j</groupId>
  64. <artifactId>log4j</artifactId>
  65. <version>1.2.17</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.jcraft</groupId>
  69. <artifactId>jsch</artifactId>
  70. <version>0.1.53</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-net</groupId>
  74. <artifactId>commons-net</artifactId>
  75. <version>3.6</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>dom4j</groupId>
  79. <artifactId>dom4j</artifactId>
  80. <version>1.6.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. <version>2.5</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-web</artifactId>
  90. <version>5.1.9.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-test</artifactId>
  95. <version>5.2.7.RELEASE</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <finalName>${artifactId}</finalName>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>