pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.nokia</groupId>
  6. <artifactId>domain_b_api</artifactId>
  7. <version>1.0</version>
  8. <parent>
  9. <groupId>com.nokia</groupId>
  10. <artifactId>hb_springboot_parent</artifactId>
  11. <version>1.0</version>
  12. <relativePath/>
  13. </parent>
  14. <properties>
  15. <skipTests>true</skipTests>
  16. </properties>
  17. <dependencies>
  18. <!-- 能力商店sdk -->
  19. <dependency>
  20. <groupId>comp-connector</groupId>
  21. <artifactId>comp-connector</artifactId>
  22. <version>1.0</version>
  23. <scope>system</scope>
  24. <systemPath>${project.basedir}/lib/comp-connector-1.0.jar</systemPath>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-logging</groupId>
  32. <artifactId>commons-logging</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/de.siegmar/fastcsv -->
  49. <dependency>
  50. <groupId>de.siegmar</groupId>
  51. <artifactId>fastcsv</artifactId>
  52. <version>2.2.0</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  55. <dependency>
  56. <groupId>com.google.code.gson</groupId>
  57. <artifactId>gson</artifactId>
  58. <version>2.9.0</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <finalName>domainBApi</finalName>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. <configuration>
  68. <includeSystemScope>true</includeSystemScope>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>