pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.uas</groupId>
  12. <artifactId>bsd</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>bsd</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>com.oracle.ojdbc</groupId>
  26. <artifactId>ojdbc8</artifactId>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>log4j</groupId>
  31. <artifactId>log4j</artifactId>
  32. <version>1.2.17</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.jcraft</groupId>
  36. <artifactId>jsch</artifactId>
  37. <version>0.1.53</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-net</groupId>
  41. <artifactId>commons-net</artifactId>
  42. <version>3.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.codehaus.jackson</groupId>
  46. <artifactId>jackson-mapper-asl</artifactId>
  47. <version>1.9.13</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-io</groupId>
  51. <artifactId>commons-io</artifactId>
  52. <version>2.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>dom4j</groupId>
  56. <artifactId>dom4j</artifactId>
  57. <version>1.6.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-test</artifactId>
  62. <version>5.2.7.RELEASE</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.httpcomponents</groupId>
  66. <artifactId>httpcore</artifactId>
  67. <version>4.4.10</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-web</artifactId>
  72. <version>5.1.9.RELEASE</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <finalName>${artifactId}</finalName>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>