| | |
| | | <artifactId>slf4j-api</artifactId> |
| | | <version>${slf4j.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>slf4j-log4j12</artifactId> |
| | | <version>${slf4j.version}</version> |
| | | </dependency> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.slf4j</groupId>--> |
| | | <!-- <artifactId>slf4j-log4j12</artifactId>--> |
| | | <!-- <version>${slf4j.version}</version>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <dependency> |
| | | <groupId>net.sf.json-lib</groupId> |
| | |
| | | <groupId>de.sciss</groupId> |
| | | <artifactId>jump3r</artifactId> |
| | | <version>1.0.5</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | <version>1.18.34</version> |
| | | <scope>provided</scope> |
| | | </dependency> |
| | | <!-- hutools工具以来 --> |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-all</artifactId> |
| | | <version>5.2.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <version>2.3.12.RELEASE</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>slf4j-log4j12</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!--websocket依赖--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-websocket</artifactId> |
| | | <version>2.3.12.RELEASE</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | |
| | | <archive> |
| | | <manifest> |
| | | <!-- 此处指定main方法入口的class --> |
| | | <mainClass>cn.org.hentai.jtt1078.app.VideoServerApp</mainClass> |
| | | <mainClass>cn.org.hentai.jtt1078.app.ServerApp</mainClass> |
| | | </manifest> |
| | | </archive> |
| | | </configuration> |
| | |
| | | <id>make-assembly</id> |
| | | <phase>package</phase> |
| | | <goals> |
| | | <goal>single</goal> |
| | | <goal>assembly</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |