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>core</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. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter</artifactId>
  62. <version>2.1.6.RELEASE</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.7.0</version>
  71. <configuration>
  72. <source>1.8</source>
  73. <target>1.8</target>
  74. </configuration>
  75. </plugin>
  76. <!-- <plugin>-->
  77. <!-- <groupId>org.apache.maven.surefire</groupId>-->
  78. <!-- <artifactId>surefire-junit4</artifactId>-->
  79. <!-- <version>2.12.4</version>-->
  80. <!-- </plugin>-->
  81. </plugins>
  82. </build>
  83. </project>