pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6. <parent>
  7. <artifactId>xchat</artifactId>
  8. <groupId>com.juxiao.xchat</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <artifactId>xchat-web-record</artifactId>
  14. <name>xchat-web-record</name>
  15. <description>账单、礼物等记录服务</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>${project.parent.groupId}</groupId>
  19. <artifactId>xchat-service-common</artifactId>
  20. <version>${project.parent.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>${project.parent.groupId}</groupId>
  24. <artifactId>xchat-service-record</artifactId>
  25. <version>${project.parent.version}</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <finalName>record</finalName>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. <!--<configuration>
  35. <warName>ROOT</warName>
  36. </configuration>-->
  37. </plugin>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-surefire-plugin</artifactId>
  41. <configuration>
  42. <testFailureIgnore>true</testFailureIgnore>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>