123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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>
- <groupId>cn.com.ty</groupId>
- <artifactId>lift-server</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>lift-push</artifactId>
- <!--添加依赖 -->
- <dependencies>
- <!-- 添加websocket依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!-- 添加公共模块依赖 -->
- <dependency>
- <groupId>cn.com.ty</groupId>
- <artifactId>lift-common</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!--从私有仓库加载依赖-->
- <dependency>
- <groupId>com.tencent</groupId>
- <artifactId>xinge-push</artifactId>
- <version>1.2.0</version>
- </dependency>
- <!--从本地lib中加载依赖-->
- <!--<dependency>-->
- <!--<groupId>com.tencent</groupId>-->
- <!--<artifactId>xinge</artifactId>-->
- <!--<version>1.2.0</version>-->
- <!--<scope>system</scope>-->
- <!--<systemPath>${project.basedir}/src/main/resources/lib/xinge-1.2.0-SNAPSHOT.jar</systemPath>-->
- <!--</dependency>-->
- </dependencies>
- <!--如果从本地加载jar依赖,必须指定以下配置-->
- <!--<build>-->
- <!--<plugins>-->
- <!--<plugin>-->
- <!--<groupId>org.apache.maven.plugins</groupId>-->
- <!--<artifactId>maven-compiler-plugin</artifactId>-->
- <!--</plugin>-->
- <!--<plugin>-->
- <!--<groupId>org.springframework.boot</groupId>-->
- <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
- <!--<configuration>-->
- <!--<executable>true</executable>-->
- <!--<includeSystemScope>true</includeSystemScope>-->
- <!--</configuration>-->
- <!--<executions>-->
- <!--<execution>-->
- <!--<goals>-->
- <!--<goal>repackage</goal>-->
- <!--</goals>-->
- <!--</execution>-->
- <!--</executions>-->
- <!--</plugin>-->
- <!--</plugins>-->
- <!--</build>-->
- </project>
|