pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.inspectionresult</groupId>
  9. <artifactId>inspectionresult-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>inspectionresult-common</artifactId>
  13. <name>inspectionresult-common</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.unis.springcloud</groupId>
  17. <artifactId>common</artifactId>
  18. <version>1.0.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. <!--<optional>true</optional>-->
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>fastjson</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. <version>26.0-jre</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.persistence</groupId>
  36. <artifactId>persistence-api</artifactId>
  37. <version>1.0.2</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.pagehelper</groupId>
  42. <artifactId>pagehelper-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>javax.validation</groupId>
  46. <artifactId>validation-api</artifactId>
  47. <version>2.0.1.Final</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.hibernate</groupId>
  51. <artifactId>hibernate-validator</artifactId>
  52. <version>5.1.0.Final</version>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.unis.inspectiontask</groupId>
  57. <artifactId>inspectiontask-common</artifactId>
  58. <version>0.0.1-SNAPSHOT</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-messaging</artifactId>
  64. <version>5.0.7.RELEASE</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-stream</artifactId>
  69. <version>2.0.0.RELEASE</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>${project.name}</finalName>
  74. </build>
  75. </project>