| | |
| | | <artifactId>wvp</artifactId> |
| | | <name>web video platform</name> |
| | | |
| | | <repositories> |
| | | <repository> |
| | | <id>nexus-aliyun</id> |
| | | <name>Nexus aliyun</name> |
| | | <url>https://maven.aliyun.com/repository/public</url> |
| | | <layout>default</layout> |
| | | <snapshots> |
| | | <enabled>false</enabled> |
| | | </snapshots> |
| | | <releases> |
| | | <enabled>true</enabled> |
| | | </releases> |
| | | </repository> |
| | | </repositories> |
| | | <pluginRepositories> |
| | | <pluginRepository> |
| | | <id>nexus-aliyun</id> |
| | | <name>Nexus aliyun</name> |
| | | <url>https://maven.aliyun.com/repository/public</url> |
| | | <snapshots> |
| | | <enabled>false</enabled> |
| | | </snapshots> |
| | | <releases> |
| | | <enabled>true</enabled> |
| | | </releases> |
| | | </pluginRepository> |
| | | </pluginRepositories> |
| | | |
| | | <properties> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | | |
| | |
| | | <generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory> |
| | | <asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory> |
| | | <asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory> |
| | | <gson.version>2.8.6</gson.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | |
| | | <artifactId>fastjson</artifactId> |
| | | <version>1.2.73</version> |
| | | </dependency> |
| | | <!-- google json库 --> |
| | | <dependency> |
| | | <groupId>com.google.code.gson</groupId> |
| | | <artifactId>gson</artifactId> |
| | | </dependency> |
| | | |
| | | <!--Guava是一种基于开源的Java库--> |
| | | <dependency> |
| | |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>wvp-2.5.8</finalName> |
| | | <plugins> |
| | | |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | |
| | | <configuration> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | <!-- |
| | | <webResources> |
| | | <resource> |
| | | <directory>${project.basedir}/libs</directory> |
| | | <targetPath>WEB-INF/lib</targetPath> |
| | | <filtering>true</filtering> |
| | | <includes> |
| | | <include>**/*.jar</include> |
| | | </includes> |
| | | </resource> |
| | | </webResources> |
| | | --> |
| | | </configuration> |
| | | </plugin> |
| | | |