pom.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <groupId>com.jyxt.thridparty</groupId>
  6. <artifactId>exchange</artifactId>
  7. <version>fy-wkong-SNAPSHOT</version>
  8. <name>exchange</name>
  9. <packaging>jar</packaging>
  10. <description>exchange project for thrid party</description>
  11. <properties>
  12. <java.version>1.8</java.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <spring-boot.version>2.7.6</spring-boot.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-jdbc</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.mysql</groupId>
  24. <artifactId>mysql-connector-j</artifactId>
  25. <scope>runtime</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.oracle.database.jdbc</groupId>
  29. <artifactId>ojdbc8</artifactId>
  30. <scope>runtime</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.oracle.ojdbc</groupId>
  34. <artifactId>orai18n</artifactId>
  35. <version>19.3.0.0</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  38. <dependency>
  39. <groupId>com.microsoft.sqlserver</groupId>
  40. <artifactId>mssql-jdbc</artifactId>
  41. <version>6.1.0.jre8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-dependencies</artifactId>
  54. <version>${spring-boot.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.8.1</version>
  66. <configuration>
  67. <source>1.8</source>
  68. <target>1.8</target>
  69. <encoding>UTF-8</encoding>
  70. </configuration>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <version>${spring-boot.version}</version>
  76. <configuration>
  77. <mainClass>com.jyxt.thridparty.exchange.ExchangeApplication</mainClass>
  78. </configuration>
  79. <executions>
  80. <execution>
  81. <id>repackage</id>
  82. <goals>
  83. <goal>repackage</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>