pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.nokia</groupId>
  6. <artifactId>hb_springboot_parent</artifactId>
  7. <version>1.0</version>
  8. <relativePath />
  9. </parent>
  10. <groupId>com.nokia</groupId>
  11. <artifactId>smsBlkInterface</artifactId>
  12. <version>1.0</version>
  13. <properties>
  14. <skipTests>true</skipTests>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-test</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-jdbc</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>de.siegmar</groupId>
  37. <artifactId>fastcsv</artifactId>
  38. <scope>compile</scope>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  41. <dependency>
  42. <groupId>org.postgresql</groupId>
  43. <artifactId>postgresql</artifactId>
  44. <version>42.4.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.jcraft</groupId>
  48. <artifactId>jsch</artifactId>
  49. <version>0.1.55</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.xuxueli</groupId>
  53. <artifactId>xxl-job-core</artifactId>
  54. <version>2.3.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>sms_blk_interface</finalName>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. <configuration>
  69. <!-- 把systemPath指定的依赖一起打包到BOOT-INF/lib -->
  70. <includeSystemScope>true</includeSystemScope>
  71. <!-- 打包1个带exec的可执行jar包和一个不带exec的可作为依赖的jar包 -->
  72. <classifier>exec</classifier>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>