pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.webchat</groupId>
  7. <artifactId>webchat</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.webchat</groupId>
  11. <artifactId>webchat-pay</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <name>webchat-pay</name>
  15. <description>webchat-pay</description>
  16. <properties>
  17. </properties>
  18. <dependencies>
  19. <!--引入mysql驱动-->
  20. <dependency>
  21. <groupId>mysql</groupId>
  22. <artifactId>mysql-connector-java</artifactId>
  23. <version>5.1.46</version>
  24. </dependency>
  25. <!--使用JPA作为ORM框架 -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-jpa</artifactId>
  29. </dependency>
  30. <!--使用JPA作为ORM框架 -->
  31. <dependency>
  32. <groupId>com.webchat</groupId>
  33. <artifactId>webchat-remote</artifactId>
  34. <version>1.0-SNAPSHOT</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <profiles>
  46. <profile>
  47. <id>dev</id>
  48. <activation>
  49. <!-- 默认环境 -->
  50. <activeByDefault>true</activeByDefault>
  51. </activation>
  52. </profile>
  53. </profiles>
  54. </project>