123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>topro-inp-nurse</artifactId>
- <groupId>com.xinxin.topro</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>topro-inpnurseservice</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>com.xinxin.topro</groupId>
- <artifactId>topro-common</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xinxin.topro</groupId>
- <artifactId>topro-pubservice</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.xinxin.topro</groupId>-->
- <!--<artifactId>topro-base</artifactId>-->
- <!--<version>1.0-SNAPSHOT</version>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- <version>6.2.0.jre8</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.jetbrains</groupId>
- <artifactId>annotations</artifactId>
- <version>RELEASE</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-websocket</artifactId>
- <version>5.0.9.RELEASE</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- <resource>
- <directory>src/main/java</directory>
- <filtering>true</filtering>
- <includes>
- <include>**/mapper/*.xml</include>
- </includes>
- </resource>
- </resources>
- </build>
- </project>
|