You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.4 KiB
103 lines
3.4 KiB
<?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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>cn.org.hentai</groupId> |
|
<artifactId>jtt1078-video-server</artifactId> |
|
<version>1.0-0</version> |
|
|
|
<name>jtt1078-video-server</name> |
|
<url>http://www.hentai.org.cn/</url> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<maven.compiler.source>1.8</maven.compiler.source> |
|
<maven.compiler.target>1.8</maven.compiler.target> |
|
<!-- logging --> |
|
<log4j.version>1.2.12</log4j.version> |
|
<slf4j.version>1.7.12</slf4j.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty-all</artifactId> |
|
<version>4.1.42.Final</version> |
|
</dependency> |
|
<!-- Logging with SLF4J --> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<version>${log4j.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<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>net.sf.json-lib</groupId> |
|
<artifactId>json-lib</artifactId> |
|
<version>2.4</version> |
|
<classifier>jdk15</classifier> |
|
</dependency> |
|
<!--pcm转mp3--> |
|
<dependency> |
|
<groupId>de.sciss</groupId> |
|
<artifactId>jump3r</artifactId> |
|
<version>1.0.5</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.protobuf</groupId> |
|
<artifactId>protobuf-java</artifactId> |
|
<version>3.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>5.3.25</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
|
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<configuration> |
|
<appendAssemblyId>false</appendAssemblyId> |
|
<descriptorRefs> |
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
</descriptorRefs> |
|
<archive> |
|
<manifest> |
|
<!-- 此处指定main方法入口的class --> |
|
<mainClass>cn.org.hentai.jtt1078.app.VideoServerApp</mainClass> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-assembly</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>assembly</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
</plugins> |
|
</build> |
|
|
|
|
|
</project>
|
|
|