pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.8.5</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <!--dubbo-service-api-->
  22. <!--dubbo-dependency-->
  23. <!-- https://mvnrepository.com/artifact/io.dubbo.springboot/spring-boot-starter-dubbo -->
  24. <dependency>
  25. <groupId>io.dubbo.springboot</groupId>
  26. <artifactId>spring-boot-starter-dubbo</artifactId>
  27. <version>1.0.0</version>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.javassist</groupId>
  31. <artifactId>javassist</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>org.slf4j</groupId>
  35. <artifactId>slf4j-log4j12</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.7.0</version>
  46. <configuration>
  47. <source>1.8</source>
  48. <target>1.8</target>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.surefire</groupId>
  53. <artifactId>surefire-junit4</artifactId>
  54. <version>2.18.1</version>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>