pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>common</artifactId>
  8. <groupId>com.yuchen.saas</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>park-common</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.yuchen.saas</groupId>
  20. <artifactId>launcher</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.yuchen.saas</groupId>
  25. <artifactId>constant-common</artifactId>
  26. <version>1.0.0</version>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>com.yuchen.saas</groupId>
  30. <artifactId>launcher</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.nest.springwrap</groupId>
  36. <artifactId>starter-tenant</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-lang3</artifactId>
  41. <version>3.9</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.code.gson</groupId>
  45. <artifactId>gson</artifactId>
  46. <version>2.8.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>fastjson</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.thinkunion.sdk.iot</groupId>
  54. <artifactId>iot-api-sdk-java</artifactId>
  55. <version>0.0.2-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.hikvision.ga</groupId>
  59. <artifactId>artemis-http-client</artifactId>
  60. <version>1.1.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.nest.springwrap</groupId>
  64. <artifactId>starter-swagger</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.swagger</groupId>
  68. <artifactId>swagger-annotations</artifactId>
  69. <version>1.5.20</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.belerweb</groupId>
  74. <artifactId>pinyin4j</artifactId>
  75. <version>2.5.1</version>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. <configuration>
  84. <skip>true</skip>
  85. <finalName>${project.name}</finalName>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>