1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-17 09:09:23 +08:00
This commit is contained in:
liujiahua123123 2019-08-08 17:33:06 +08:00
parent 7bde0cb668
commit ce220da11c
6 changed files with 83 additions and 1 deletions
mirai-core

View File

@ -6,9 +6,31 @@
<artifactId>mirai-core</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>jpre</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<packaging>jar</packaging>
<properties>
<kotlin.version>1.3.41</kotlin.version>
</properties>
<parent>
<groupId>net.mamoe</groupId>
<artifactId>mirai</artifactId>
@ -17,7 +39,6 @@
</parent>
<build>
<sourceDirectory>/src/main/java</sourceDirectory>
<resources>
<resource>
@ -60,6 +81,50 @@
<shadedClassifierName>shaded</shadedClassifierName>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@ -1,5 +1,6 @@
package net.mamoe.mirai;
/**
* @author Him188moe @ Mirai Project
*/

View File

@ -0,0 +1,4 @@
package net.mamoe.mirai.event;
public class MiralEvent {
}

View File

@ -0,0 +1,4 @@
package net.mamoe.mirai.qq;
public class QQ {
}

View File

@ -0,0 +1,4 @@
package net.mamoe.mirai.qq;
public class QQGroup {
}

View File

@ -0,0 +1,4 @@
package net.mamoe.mirai.qq;
public class QQMessage {
}