pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-operation-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-dubbo-consumer</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.alibaba.boot</groupId>
  19. <artifactId>dubbo-spring-boot-starter</artifactId>
  20. <version>0.2.1.RELEASE</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>dubbo</artifactId>
  25. <version>2.6.5</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.superdesk.uniorder</groupId>
  29. <artifactId>superdesk-uniorder-dubbo-facade</artifactId>
  30. <version>${project.parent.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.superdesk.uniorder.websocket</groupId>
  34. <artifactId>superdesk-uniorder-websocket-dubbo-facade</artifactId>
  35. <version>${project.parent.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.superdesk.uniorder</groupId>
  39. <artifactId>superdesk-uniorder-dao</artifactId>
  40. <version>${project.parent.version}</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-deploy-plugin</artifactId>
  48. <configuration>
  49. <skip>true</skip>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-install-plugin</artifactId>
  55. <configuration>
  56. <skip>true</skip>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>