pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>Demo project for Spring Boot</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>com.oracle.ojdbc</groupId>
  37. <artifactId>ojdbc8</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  41. <dependency>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpcore</artifactId>
  44. <version>4.4.13</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.codehaus.jackson</groupId>
  48. <artifactId>jackson-mapper-asl</artifactId>
  49. <version>1.9.13</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>log4j</groupId>
  53. <artifactId>log4j</artifactId>
  54. <version>1.2.17</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.jcraft</groupId>
  58. <artifactId>jsch</artifactId>
  59. <version>0.1.53</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-net</groupId>
  63. <artifactId>commons-net</artifactId>
  64. <version>3.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>dom4j</groupId>
  68. <artifactId>dom4j</artifactId>
  69. <version>1.6.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. <version>2.5</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-web</artifactId>
  79. <version>5.1.9.RELEASE</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-test</artifactId>
  84. <version>5.2.7.RELEASE</version>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <finalName>${artifactId}</finalName>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>