BistroCore
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.gitee.mykasa</groupId>
<artifactId>BistroCore</artifactId>
<version>1.4</version>
</dependency><?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>
<groupId>io.gitee.mykasa</groupId>
<artifactId>BistroCore</artifactId>
<version>1.4</version>
<packaging>jar</packaging>
<name>BistroCore</name>
<description>酒馆插件核心</description>
<url>https://gitee.com/myKasa/BistroCore</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE v3.0</name>
<url>https://gitee.com/myKasa/BistroCore/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>kasa</id>
<name>kasa</name>
<email>1048064671@qq.com</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
</roles>
</developer>
</developers>
<scm>
<connection>https://gitee.com/myKasa/BistroCore.git</connection>
<developerConnection>scm:git:ssh://git@gitee.com:myKasa/BistroCore.git</developerConnection>
<url>https://gitee.com/myKasa/BistroCore</url>
</scm>
<!-- 发布地址 -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<properties>
<!-- 项目版本 -->
<project.version>${project.version}</project.version>
<!-- 其他配置 -->
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- gpg 目录 -->
<gpg.executable>D:\Develop\GnuPG\bin\gpg.exe</gpg.executable>
<!-- 依赖包版本 -->
<spigot.version>1.20-R0.1-SNAPSHOT</spigot.version>
<lombok.version>1.18.32</lombok.version>
<fastjson.version>2.0.52</fastjson.version>
<spring.version>6.1.11</spring.version>
<mica.version>3.3.2</mica.version>
<libby.version>1.3.1</libby.version>
<slf4j.version>2.0.16</slf4j.version>
</properties>
<build>
<plugins>
<!-- central发布插件 -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>kasa</publishingServerId>
<tokenAuth>true</tokenAuth>
<!-- <skipPublishing>true</skipPublishing>-->
</configuration>
</plugin>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>17</source>
<encoding>UTF-8</encoding>
<failOnError>false</failOnError>
</configuration>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<executable>${gpg.executable}</executable>
<keyname>kasa</keyname>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>maven_central</id>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<repository>
<id>other</id>
<url>https://repo.alessiodp.com/releases/</url>
</repository>
</repositories>
<dependencies>
<!-- spigot 版本 -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>