pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  6. <artifactId>topro-inp-nurse</artifactId>
  7. <groupId>com.xinxin.topro</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>topro-inpnurseweb</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.xinxin.topro</groupId>
  16. <artifactId>topro-inpnurseservice</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper-spring-boot-starter</artifactId>
  22. <version>1.2.5</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.jayway.jsonpath</groupId>
  26. <artifactId>json-path</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.oracle</groupId>
  30. <artifactId>ojdbc8</artifactId>
  31. <version>11.1.0.6.0</version>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>