pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>onemini-alipay-sdk</module>
  8. <module>onemini-hospital-empty</module>
  9. <module>onemini-hospital-sdk</module>
  10. </modules>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.4.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <groupId>com.ywt.alipaymp.service</groupId>
  18. <artifactId>alipaymp-service</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. <name>alipaymp-service</name>
  21. <description>alipaymp-service</description>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. </properties>
  25. <!-- maven 私服 start -->
  26. <repositories>
  27. <repository>
  28. <id>nexus</id>
  29. <name>Team Nexus Repository</name>
  30. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  31. </repository>
  32. </repositories>
  33. <pluginRepositories>
  34. <pluginRepository>
  35. <id>nexus</id>
  36. <name>Team Nexus Repository</name>
  37. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  38. </pluginRepository>
  39. </pluginRepositories>
  40. <!-- end maven 私服 -->
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-jpa</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>jcl-over-slf4j</artifactId>
  58. </exclusion>
  59. <exclusion>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>jul-to-slf4j</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. </dependencies>
  66. </project>