mirror of
https://github.com/mamoe/mirai.git
synced 2025-04-17 09:09:23 +08:00
base
This commit is contained in:
parent
7bde0cb668
commit
ce220da11c
mirai-core
pom.xml
src/main/java/net/mamoe/mirai
@ -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>
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
package net.mamoe.mirai;
|
||||
|
||||
|
||||
/**
|
||||
* @author Him188moe @ Mirai Project
|
||||
*/
|
||||
|
@ -0,0 +1,4 @@
|
||||
package net.mamoe.mirai.event;
|
||||
|
||||
public class MiralEvent {
|
||||
}
|
4
mirai-core/src/main/java/net/mamoe/mirai/qq/QQ.java
Normal file
4
mirai-core/src/main/java/net/mamoe/mirai/qq/QQ.java
Normal file
@ -0,0 +1,4 @@
|
||||
package net.mamoe.mirai.qq;
|
||||
|
||||
public class QQ {
|
||||
}
|
4
mirai-core/src/main/java/net/mamoe/mirai/qq/QQGroup.java
Normal file
4
mirai-core/src/main/java/net/mamoe/mirai/qq/QQGroup.java
Normal file
@ -0,0 +1,4 @@
|
||||
package net.mamoe.mirai.qq;
|
||||
|
||||
public class QQGroup {
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package net.mamoe.mirai.qq;
|
||||
|
||||
public class QQMessage {
|
||||
}
|
Loading…
Reference in New Issue
Block a user