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.
59 lines
1.9 KiB
59 lines
1.9 KiB
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.pqh</groupId>
|
|
<artifactId>webjar</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>webjar</name>
|
|
<url>https://gitee.com/WuXianChaoPin/WebCrawler</url>
|
|
|
|
<properties>
|
|
<jquery.version>RELEASE</jquery.version>
|
|
<bootstrap.version>RELEASE</bootstrap.version>
|
|
<fontawesome.version>RELEASE</fontawesome.version>
|
|
<jquery-tmpl.version>RELEASE</jquery-tmpl.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
<version>${jquery.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>bootstrap</artifactId>
|
|
<version>${bootstrap.version}</version>
|
|
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>font-awesome</artifactId>
|
|
<version>${fontawesome.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>jquery-tmpl</artifactId>
|
|
<version>${jquery-tmpl.version}</version>
|
|
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |