2019-08-07 18:26:11 +08:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
<artifactId>mirai-core</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
|
2019-08-07 18:33:25 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2019-08-07 18:26:11 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>net.mamoe</groupId>
|
|
|
|
<artifactId>mirai</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2019-08-08 21:16:26 +08:00
|
|
|
<dependencies>
|
2019-09-15 12:20:14 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/jpcap/jpcap -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jpcap</groupId>
|
|
|
|
<artifactId>jpcap</artifactId>
|
|
|
|
<version>0.1.18-002</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/jpcap.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
|
2019-09-11 22:12:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-08-21 00:48:44 +08:00
|
|
|
<dependency>
|
2019-08-21 21:25:27 +08:00
|
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
|
|
|
<artifactId>kotlinx-coroutines-core</artifactId>
|
2019-08-21 00:48:44 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-08-08 21:16:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
</dependency>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-17 17:49:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
</dependency>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-15 22:04:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
|
|
</dependency>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-15 22:04:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2019-08-20 18:25:57 +08:00
|
|
|
</dependency>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-20 18:25:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
</dependency>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-09-05 22:10:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-08-15 22:04:21 +08:00
|
|
|
|
2019-09-11 20:21:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
2019-09-11 22:12:37 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ini4j</groupId>
|
|
|
|
<artifactId>ini4j</artifactId>
|
2019-09-11 20:21:02 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-09-11 20:33:21 +08:00
|
|
|
|
2019-08-08 21:16:26 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2019-08-07 18:26:11 +08:00
|
|
|
<build>
|
2019-08-07 18:33:25 +08:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>/src/main/resources</directory>
|
|
|
|
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2019-08-07 18:26:11 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-08 17:33:06 +08:00
|
|
|
<plugin>
|
2019-09-08 14:29:21 +08:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
2019-08-08 17:33:06 +08:00
|
|
|
</plugin>
|
2019-09-08 14:29:21 +08:00
|
|
|
|
2019-08-08 17:33:06 +08:00
|
|
|
<plugin>
|
2019-09-08 14:29:21 +08:00
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
2019-10-02 19:13:09 +08:00
|
|
|
<configuration>
|
|
|
|
<args>
|
|
|
|
<arg>-XXLanguage:+InlineClasses</arg>
|
|
|
|
</args>
|
|
|
|
</configuration>
|
2019-08-08 17:33:06 +08:00
|
|
|
</plugin>
|
2019-08-07 18:26:11 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|