pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-inpnurseservice</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.xinxin.topro</groupId>
  16. <artifactId>topro-common</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.xinxin.topro</groupId>
  21. <artifactId>topro-pubservice</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <!--<dependency>-->
  25. <!--<groupId>com.xinxin.topro</groupId>-->
  26. <!--<artifactId>topro-base</artifactId>-->
  27. <!--<version>1.0-SNAPSHOT</version>-->
  28. <!--</dependency>-->
  29. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  30. <dependency>
  31. <groupId>com.microsoft.sqlserver</groupId>
  32. <artifactId>mssql-jdbc</artifactId>
  33. <version>6.2.0.jre8</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-configuration-processor</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jetbrains</groupId>
  43. <artifactId>annotations</artifactId>
  44. <version>RELEASE</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-websocket</artifactId>
  50. <version>5.0.9.RELEASE</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. <resources>
  62. <resource>
  63. <directory>src/main/resources</directory>
  64. </resource>
  65. <resource>
  66. <directory>src/main/java</directory>
  67. <filtering>true</filtering>
  68. <includes>
  69. <include>**/mapper/*.xml</include>
  70. </includes>
  71. </resource>
  72. </resources>
  73. </build>
  74. </project>