pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <groupId>com.mooctest.crowd</groupId>
  7. <artifactId>domain</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>junit</groupId>
  12. <artifactId>junit</artifactId>
  13. <version>4.12</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.mockito</groupId>
  17. <artifactId>mockito-all</artifactId>
  18. <version>1.10.19</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.powermock</groupId>
  23. <artifactId>powermock-module-junit4</artifactId>
  24. <version>1.6.4</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.powermock</groupId>
  28. <artifactId>powermock-api-mockito</artifactId>
  29. <version>1.6.4</version>
  30. </dependency>
  31. <!--dubbo-domainservice-api-->
  32. <!--dubbo-dependency-->
  33. <!-- https://mvnrepository.com/artifact/io.dubbo.springboot/spring-boot-starter-dubbo -->
  34. <dependency>
  35. <groupId>io.dubbo.springboot</groupId>
  36. <artifactId>spring-boot-starter-dubbo</artifactId>
  37. <version>1.0.0</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.javassist</groupId>
  41. <artifactId>javassist</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>org.slf4j</groupId>
  45. <artifactId>slf4j-log4j12</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.6</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-web</artifactId>
  57. <version>RELEASE</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-web</artifactId>
  63. <version>5.1.8.RELEASE</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>3.7.0</version>
  72. <configuration>
  73. <source>1.8</source>
  74. <target>1.8</target>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.apache.maven.surefire</groupId>
  79. <artifactId>surefire-junit4</artifactId>
  80. <version>2.18.1</version>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>