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>smsBlkApi</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-aop</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-validation</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>de.siegmar</groupId>
  45. <artifactId>fastcsv</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp</artifactId>
  52. <version>4.10.0</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  56. <dependency>
  57. <groupId>com.google.code.gson</groupId>
  58. <artifactId>gson</artifactId>
  59. <version>2.10</version>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>sms_blk_api</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>