mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-05-22 20:31:46 +08:00
84 lines
2.5 KiB
XML
84 lines
2.5 KiB
XML
<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>
|
|
<artifactId>ChopperBot</artifactId>
|
|
<groupId>org.example</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>CreeperModule</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>CreeperModule</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>FileModule</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.26</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/us.codecraft/webmagic-core -->
|
|
<dependency>
|
|
<groupId>us.codecraft</groupId>
|
|
<artifactId>webmagic-core</artifactId>
|
|
<version>0.8.0</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/us.codecraft/webmagic-extension -->
|
|
<dependency>
|
|
<groupId>us.codecraft</groupId>
|
|
<artifactId>webmagic-extension</artifactId>
|
|
<version>0.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20210307</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.akamai.edgegrid</groupId>
|
|
<artifactId>edgegrid-signer-core</artifactId>
|
|
<version>5.0.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|